From d1af5d471c1da0806bbaea2744e61aa1a30cf5c4 Mon Sep 17 00:00:00 2001 From: jbannister Date: Fri, 1 Sep 2023 12:27:05 +0100 Subject: [PATCH] Fix PyPI upload; stop producing eggs and universal wheels. --- .circleci/config.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 76be3c9..b97b3b5 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -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 @@ -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"