- 12 Nov, 2018 8 commits
-
-
Paul Ganssle authored
Fix Travis test for pyc files in egg-info
-
Paul Ganssle authored
`!` is a special character in YAML syntax, so this was being interpreted as `grep pyc ...`, not `! grep pyc ...` I've also added the same `pyc` test to the normal tests.
-
Paul Ganssle authored
-
Paul Ganssle authored
Release 40.6.0
-
Paul Ganssle authored
-
Paul Ganssle authored
-
Paul Ganssle authored
Fix upload metadata
-
Paul Ganssle authored
This comment is not used anywhere and `platform.dist()` is deprecated. See CPython PR #10414: https://github.com/python/cpython/pull/10414 and bpo-35186: https://bugs.python.org/issue35186
-
- 11 Nov, 2018 3 commits
-
-
Jason R. Coombs authored
-
Jason R. Coombs authored
-
Jason R. Coombs authored
-
- 10 Nov, 2018 1 commit
-
-
Paul Ganssle authored
Call os.path.normpath to normalize paths for comp
-
- 07 Nov, 2018 18 commits
-
-
Paul Ganssle authored
The `upload.show_response` feature was not added until Python 3. Rather than backport it, it is now enabled only if supported. This also adds a "smoke test" for the feature.
-
Paul Ganssle authored
This fixes uploads when bdist_rpm or bdist_dumb are the command, both of which insert a comment about what platform they are built for.
-
Paul Ganssle authored
This fixes an issue where `distutils.spawn.spawn` was not available in the ported upload_file, which is only used when signing the data. This also adds a test that the gpg signature command is invoked and included in the uploaded data.
-
Paul Ganssle authored
-
Paul Ganssle authored
-
Paul Ganssle authored
-
Paul Ganssle authored
`test_upload_metadata` was written before the fixture, so this updates the test to use the fixture.
-
Paul Ganssle authored
This is a fixture to create an upload command with a patched version of urlopen so that no HTTP queries are sent.
-
Paul Ganssle authored
Rather than writing to a file in a temporary directory, we can write to and read from an in-memory buffer, now that the encoding functionality in write_pkg_file is fixed.
-
Paul Ganssle authored
This creates a wrapper function for writing fields in the PKG-INFO file, both to simplify the syntax and to add a point where we can inject an encoding function in order to support Python 2.7 compatibility.
-
Paul Ganssle authored
-
Paul Ganssle authored
-
Paul Ganssle authored
Previously this value was hard-coded to '1.0', which was inaccurate for many packages. Fixes #1381
-
Paul Ganssle authored
This turns get_metadata_version into a method on DistributionMetadata, populated either by inferrence (in the case of package metadata specified in `setup`) or from the data in a specified PKG-INFO file. To populate metadata_version from PKG-INFO, we need to monkey patch read_pkg_file in addition to write_pkg_file.
-
Paul Ganssle authored
-
Paul Ganssle authored
-
Paul Ganssle authored
This is the baseline, unchanged from the version in distutils.dist, to be modified before patching.
-
Paul Ganssle authored
-
- 04 Nov, 2018 2 commits
-
-
Paul Ganssle authored
Add futures and backport to Python 2.7 test requirements
-
Paul Ganssle authored
Egg include setup py
-
- 03 Nov, 2018 6 commits
-
-
Paul Ganssle authored
-
Shashank Singh authored
-
Paul Ganssle authored
-
Paul Ganssle authored
`setuptools.tests.test_build_meta` relies on the Python 3 feature `concurrent.futures` to run, and as a result has been silently skipped in Python 2.7. This adds the `futures` backport to the 2.7 test requirements and turns the `pytest.importorskip` invocations in test_build_meta into standard import statements.
-
Shashank Singh authored
Fixes GH issue #1506
-
Shashank Singh authored
This tests that `setup.py` is included by default in the distribution with the egg_info command and when an sdist is built with build_meta.build_sdist
-
- 01 Nov, 2018 2 commits
-
-
Paul Ganssle authored
Document setup.cfg minimum version for version and project_urls
-
Paul Ganssle authored
Update documentation for setuptools distribution
-