Skip to content

Commit ac95e57

Browse files
committed
fix: use a single install env, add wheel to twine check prior to upload
1 parent 1e86d82 commit ac95e57

File tree

1 file changed

+3
-7
lines changed

1 file changed

+3
-7
lines changed

.circleci/config.yml

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -410,7 +410,7 @@ jobs:
410410
name: Check sdist package in build environment
411411
command: |
412412
source /tmp/build/bin/activate
413-
twine check dist/sdcflows*.tar.gz
413+
twine check dist/sdcflows*
414414
- run:
415415
name: Install sdist package into install environment and check version
416416
command: |
@@ -462,10 +462,6 @@ jobs:
462462
virtualenv --python=python3 /tmp/install_sdist
463463
source /tmp/install_sdist/bin/activate
464464
python3 -m pip install "setuptools>=30.3.0" "pip>=10.0.1"
465-
deactivate
466-
virtualenv --python=python3 /tmp/install_wheel
467-
source /tmp/install_wheel/bin/activate
468-
python3 -m pip install "setuptools>30.3.0" "pip>=10.0.1"
469465
- run:
470466
name: Build SDCflows in build environment
471467
command: |
@@ -474,10 +470,10 @@ jobs:
474470
- store_artifacts:
475471
path: /tmp/src/sdcflows/dist
476472
- run:
477-
name: Check sdist package in build environment
473+
name: Check sdist and wheel in build environment
478474
command: |
479475
source /tmp/build/bin/activate
480-
twine check dist/sdcflows*.tar.gz
476+
twine check dist/sdcflows*
481477
- run:
482478
name: Install sdist package into install environment and check version
483479
command: |

0 commit comments

Comments
 (0)