From 6b80bd0648bb9413689b06eb6915dec522830674 Mon Sep 17 00:00:00 2001 From: Daniele Varrazzo Date: Wed, 3 Nov 2021 13:13:58 +0100 Subject: [PATCH] Drop Windows exe package build --- .appveyor/packages.yml | 2 -- doc/release.rst | 5 ----- scripts/build/appveyor.py | 4 ---- 3 files changed, 11 deletions(-) diff --git a/.appveyor/packages.yml b/.appveyor/packages.yml index 5822e569..cc1fae5f 100644 --- a/.appveyor/packages.yml +++ b/.appveyor/packages.yml @@ -83,8 +83,6 @@ test_script: artifacts: - path: dist\psycopg2-*\*.whl name: wheel - - path: dist\psycopg2-*\*.exe - name: exe # vim: set ts=4 sts=4 sw=4: diff --git a/doc/release.rst b/doc/release.rst index a49ec7ef..088bfa44 100644 --- a/doc/release.rst +++ b/doc/release.rst @@ -54,11 +54,6 @@ How to make a psycopg2 release ``scripts/build`` directory. They will be saved in a ``packages/psycopg2-${VERSION}`` directory. -- Remove the ``.exe`` from the dir, because we don't want to upload them on - PyPI:: - - $ rm -v packages/psycopg2-${VERSION}/*.exe - - Only for stable packages: upload the signed packages on PyPI:: $ twine upload -s packages/psycopg2-${VERSION}/* diff --git a/scripts/build/appveyor.py b/scripts/build/appveyor.py index bd650074..4d312b13 100755 --- a/scripts/build/appveyor.py +++ b/scripts/build/appveyor.py @@ -326,10 +326,6 @@ def build_binary_packages(): add_pg_config_path() - # Build .exe packages for whom still use them - if opt.package_name == 'psycopg2': - run_python(['setup.py', 'bdist_wininst', "-d", opt.dist_dir]) - # Build .whl packages run_python(['setup.py', 'bdist_wheel', "-d", opt.dist_dir])