From de11b125f7a94a13aff478482e3a83a30176f7b7 Mon Sep 17 00:00:00 2001 From: "Jason R. Coombs" Date: Sat, 26 Nov 2016 21:24:11 -0600 Subject: Now by default include the windows script launchers. Fixes #861 by addressing the underlying cause. --- .travis.yml | 2 -- CHANGES.rst | 10 ++++++++++ setup.py | 4 ++-- 3 files changed, 12 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 006316d1..30b69a69 100644 --- a/.travis.yml +++ b/.travis.yml @@ -24,8 +24,6 @@ script: #- python -m tox - tox -before_deploy: - - export SETUPTOOLS_INSTALL_WINDOWS_SPECIFIC_FILES=1 deploy: provider: pypi # Also update server in setup.cfg diff --git a/CHANGES.rst b/CHANGES.rst index 3b9f0894..99041cde 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -2,6 +2,16 @@ CHANGES ======= +v29.0.1 +------- + +* #861: Re-release of v29.0.1 with the executable script + launchers bundled. Now, launchers are included by default + and users that want to disable this behavior must set the + environment variable + 'SETUPTOOLS_INSTALL_WINDOWS_SPECIFIC_FILES' to + a false value like "false" or "0". + v29.0.0 ------- diff --git a/setup.py b/setup.py index 6286af63..30c19d66 100755 --- a/setup.py +++ b/setup.py @@ -54,8 +54,8 @@ package_data = dict( ) force_windows_specific_files = ( - os.environ.get("SETUPTOOLS_INSTALL_WINDOWS_SPECIFIC_FILES") - not in (None, "", "0") + os.environ.get("SETUPTOOLS_INSTALL_WINDOWS_SPECIFIC_FILES", "1").lower() + not in ("", "0", "false", "no") ) include_windows_files = ( -- cgit v1.2.3 From 0be2dfcfd85044932127ee47ad5d16e5069d3b3a Mon Sep 17 00:00:00 2001 From: "Jason R. Coombs" Date: Sat, 26 Nov 2016 21:28:45 -0600 Subject: =?UTF-8?q?Bump=20version:=2029.0.0=20=E2=86=92=2029.0.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- setup.cfg | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.cfg b/setup.cfg index 589df541..4e59c74e 100755 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 29.0.0 +current_version = 29.0.1 commit = True tag = True diff --git a/setup.py b/setup.py index 30c19d66..79d30308 100755 --- a/setup.py +++ b/setup.py @@ -85,7 +85,7 @@ def pypi_link(pkg_filename): setup_params = dict( name="setuptools", - version="29.0.0", + version="29.0.1", description="Easily download, build, install, upgrade, and uninstall " "Python packages", author="Python Packaging Authority", -- cgit v1.2.3 From a83ae992278916ade263379f2d7adc56a4539ff4 Mon Sep 17 00:00:00 2001 From: "Jason R. Coombs" Date: Tue, 29 Nov 2016 18:20:05 -0600 Subject: Evaluate the expression directly. Workaround for #860. --- setuptools/tests/test_namespaces.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setuptools/tests/test_namespaces.py b/setuptools/tests/test_namespaces.py index 21fd69e7..2d44ad86 100644 --- a/setuptools/tests/test_namespaces.py +++ b/setuptools/tests/test_namespaces.py @@ -13,7 +13,7 @@ class TestNamespaces: @pytest.mark.xfail(sys.version_info < (3, 3), reason="Requires PEP 420") - @pytest.mark.skipif('os.environ.get("APPVEYOR")', + @pytest.mark.skipif(os.environ.get("APPVEYOR"), reason="https://github.com/pypa/setuptools/issues/851") def test_mixed_site_and_non_site(self, tmpdir): """ -- cgit v1.2.3