Skip to content

Commit

Permalink
Merge pull request #158 from man-group/fix-pypi-upload
Browse files Browse the repository at this point in the history
Fix PyPI upload; stop producing eggs and universal wheels.
  • Loading branch information
jonbannister authored Sep 1, 2023
2 parents 531b3e8 + d1af5d4 commit 660f645
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -130,9 +130,8 @@ defaults: &defaults
pip install -e ".[docs]"
python setup.py build_sphinx
cp -r ./build "$CIRCLE_ARTIFACTS"
# Build egg
- run:
name: Build egg
name: Build distribution
command: |
set -ex
. ci/bin/activate
Expand All @@ -146,8 +145,7 @@ defaults: &defaults
cat ../log
exit 1
fi # rst2html.py alwaysexits with 0, check log size
python setup.py bdist_wheel --universal
python setup.py bdist_egg
python setup.py bdist_wheel
python setup.py sdist
mkdir -p "$CIRCLE_ARTIFACTS/dist"
cp -r ./dist/* "$CIRCLE_ARTIFACTS/dist"
Expand Down

0 comments on commit 660f645

Please sign in to comment.