Skip to content
This repository was archived by the owner on Oct 23, 2024. It is now read-only.

Commit a65868c

Browse files
committed
more circle
1 parent 6dd702c commit a65868c

File tree

1 file changed

+7
-21
lines changed

1 file changed

+7
-21
lines changed

.circleci/config.yml

Lines changed: 7 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -17,17 +17,14 @@ jobs:
1717
1818
pypi_upload:
1919
docker:
20-
- image: circleci/python:3.5
20+
- image: python:3.5
2121
steps:
22-
- run:
23-
command: tox -e build_pypi
22+
- checkout
2423

25-
pypi_upload_rc:
26-
docker:
27-
- image: circleci/python:3.5
28-
steps:
2924
- run:
30-
command: tox -e build_testpypi
25+
command: |
26+
pip install --upgrade pip tox
27+
tox -e build_pypi
3128
3229
workflows:
3330
version: 2
@@ -37,20 +34,9 @@ workflows:
3734
pypi_upload:
3835
jobs:
3936
- pypi_upload:
40-
requires:
41-
- test
4237
filters:
4338
tags:
4439
only:
4540
- /^[0-9]+.[0-9]+.[0-9]+$/
46-
47-
- pypi_upload_rc:
48-
requires:
49-
- test
50-
filters:
51-
tags:
52-
only:
53-
- /^[0-9]+.[0-9]+.[0-9]+-rc[0-9]+$/
54-
55-
56-
41+
branches:
42+
ignore: /.*/

0 commit comments

Comments
 (0)