Skip to content

Commit 660f645

Browse files
authored
Merge pull request #158 from man-group/fix-pypi-upload
Fix PyPI upload; stop producing eggs and universal wheels.
2 parents 531b3e8 + d1af5d4 commit 660f645

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

.circleci/config.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -130,9 +130,8 @@ defaults: &defaults
130130
pip install -e ".[docs]"
131131
python setup.py build_sphinx
132132
cp -r ./build "$CIRCLE_ARTIFACTS"
133-
# Build egg
134133
- run:
135-
name: Build egg
134+
name: Build distribution
136135
command: |
137136
set -ex
138137
. ci/bin/activate
@@ -146,8 +145,7 @@ defaults: &defaults
146145
cat ../log
147146
exit 1
148147
fi # rst2html.py alwaysexits with 0, check log size
149-
python setup.py bdist_wheel --universal
150-
python setup.py bdist_egg
148+
python setup.py bdist_wheel
151149
python setup.py sdist
152150
mkdir -p "$CIRCLE_ARTIFACTS/dist"
153151
cp -r ./dist/* "$CIRCLE_ARTIFACTS/dist"

0 commit comments

Comments
 (0)