Skip to content

Commit 79efc38

Browse files
committed
Prep circleci config for merge to master
1 parent c303045 commit 79efc38

1 file changed

Lines changed: 10 additions & 24 deletions

File tree

.circleci/config.yml

Lines changed: 10 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -21,21 +21,11 @@ workflows:
2121
requires:
2222
- build
2323

24-
# - windows_py_38:
25-
# requires:
26-
# - build
27-
28-
# - mac_py_38:
29-
# requires:
30-
# - build
31-
3224
- deploy:
3325
requires:
3426
- linux_py_27
3527
- linux_py_37
3628
- linux_py_latest
37-
# - windows_py_38
38-
# - mac_py_38
3929

4030
filters:
4131
branches:
@@ -52,12 +42,12 @@ jobs:
5242
- checkout:
5343
name: Checkout Git
5444

55-
# - run:
56-
# name: verify git tag vs. version
57-
# command: |
58-
# python3 -m venv venv
59-
# . venv/bin/activate
60-
# python setup.py verify
45+
- run:
46+
name: verify git tag vs. version
47+
command: |
48+
python3 -m venv venv
49+
. venv/bin/activate
50+
python setup.py verify
6151
6252
- run:
6353
name: Build Package
@@ -161,15 +151,11 @@ jobs:
161151
echo -e "username = $TWINE_USERNAME" >> ~/.pypirc
162152
echo -e "password = $TWINE_PASSWORD" >> ~/.pypirc
163153
164-
# - run:
165-
# name: Upload to pypi
166-
# command: |
167-
# . venv/bin/activate
168-
# twine upload dist/*
169-
170154
- run:
171-
name: Pretend to upload to pypi
155+
name: Upload to pypi
172156
command: |
173-
echo -e "Pretending to send to PyPi"
157+
cd /tmp/artifact
158+
. venv/bin/activate
159+
twine upload dist/
174160
175161

0 commit comments

Comments
 (0)