From 9f7caecd701db7cd76bbcdcf462b92e4970b4ab3 Mon Sep 17 00:00:00 2001 From: layday Date: Mon, 30 Aug 2021 13:30:05 -0400 Subject: [PATCH] Do not tag wheel as being compatible with Python 2 Corrected "universal wheel" directive in setup.cfg so that building a wheel does not target Python 2. The PyPi files index for 1.7.0 was corrected manually. Pull request courtesy layday. Fixes: #893 Closes: #894 Pull-request: https://github.com/sqlalchemy/alembic/pull/894 Pull-request-sha: 577afdbe5906247493182df95fe5e5338ac23080 Change-Id: I26ca6d9e3e8064d22713926707a53cb57a69d8e7 --- docs/build/unreleased/893.rst | 7 +++++++ setup.cfg | 3 --- 2 files changed, 7 insertions(+), 3 deletions(-) create mode 100644 docs/build/unreleased/893.rst diff --git a/docs/build/unreleased/893.rst b/docs/build/unreleased/893.rst new file mode 100644 index 00000000..546e7bb8 --- /dev/null +++ b/docs/build/unreleased/893.rst @@ -0,0 +1,7 @@ +.. change:: + :tags: bug, installation + :tickets: 893 + + Corrected "universal wheel" directive in setup.cfg so that building a wheel + does not target Python 2. The PyPi files index for 1.7.0 was corrected + manually. Pull request courtesy layday. diff --git a/setup.cfg b/setup.cfg index 32fed410..992a7ac4 100644 --- a/setup.cfg +++ b/setup.cfg @@ -67,9 +67,6 @@ console_scripts = [egg_info] tag_build=dev -[bdist_wheel] -universal = 1 - [upload_docs] upload-dir = docs/build/output/html -- 2.47.2