summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
| * | | | Remove msvc hack for Numpy < 1.11.2Michał Górny2023-01-213-23/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Remove the msvc hack that was applied if numpy.distutils were loaded prior to Numpy 1.11.2. These versions date back to June 2016 and no longer build with Python 3.7. At the same time, the hack relies on packaging.version.LegacyVersion that is removed in packaging 22.0.
* | | | | Merge pull request #3788 from mgorny/test-inva-versAnderson Bravalheri2023-01-211-2/+2
|\ \ \ \ \ | | | | | | | | | | | | Fix version syntax in test_nowarn_accidental_env_marker_misconfig
| * | | | | Fix version syntax in test_nowarn_accidental_env_marker_misconfigMichał Górny2023-01-211-2/+2
|/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix the two "marker"-alike cases (for package `python_version`) for test_nowarn_accidental_env_marker_misconfig to use `<3` rather than `<'3'`. The latter maps to the version `'3'` which is not a valid version and therefore causes an error with packaging-22.0+. See the discussion at https://github.com/pypa/setuptools/commit/506e7e7e1cac6a5d534184d35a20a73e9dd58045#r97577660
* | | | | Merge pull request #3787 from mgorny/dist-info-testAnderson Bravalheri2023-01-211-1/+2
|\ \ \ \ \ | |/ / / / |/| | | | Fix dependency syntax error in test_dist_info
| * | | | Fix dependency syntax error in test_dist_infoMichał Górny2023-01-211-1/+2
|/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix the install_requires used in test_dist_info to use the dangling syntax, in order to correctly handle markers. This fixes syntax error when parsed by packaging-22.0+, as well as setuptools warning: ``` UserWarning: One of the parsed requirements in `install_requires` looks like a valid environment marker: \'sys_platform != "linux"\' Make sure that the config is correct and check https://setuptools.pypa.io/en/latest/userguide/declarative_config.html#opt-2 warnings.warn(msg, UserWarning)\n' ```
* | | | Bump version: 66.1.0 → 66.1.1v66.1.1Anderson Bravalheri2023-01-204-4/+12
| | | |
* | | | Handle strings in pyprject.toml's tool.setuptools.dynamic.*.file (#3782)Anderson Bravalheri2023-01-203-5/+24
|\ \ \ \
| * | | | Account for windows paths in testsAnderson Bravalheri2023-01-201-1/+5
| | | | |
| * | | | Avoid exhausting iteratorAnderson Bravalheri2023-01-201-3/+2
| | | | |
| * | | | Delay importAnderson Bravalheri2023-01-201-1/+2
| | | | |
| * | | | Add news fragmentAnderson Bravalheri2023-01-201-0/+2
| | | | |
| * | | | Account for file directive with string in pyproject.tomlAnderson Bravalheri2023-01-201-2/+4
| | | | |
| * | | | Capture expectations of issue 3781Anderson Bravalheri2023-01-201-4/+15
|/ / / /
* | | | Bump version: 66.0.0 → 66.1.0v66.1.0Anderson Bravalheri2023-01-206-8/+19
| | | |
* | | | Flip conditionals around package finders in pkg_resources (#3685)Anderson Bravalheri2023-01-202-7/+8
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - In Python 3.3+ importlib.machinery.FileFinder is always present, therefore we no longer need to keep the conditional - In Python 3.12+ pkgutil.ImpImporter is removed, so we need a conditional to avoid using it directly.
| * | | | Add news fragmentAnderson Bravalheri2023-01-181-0/+1
| | | | |
| * | | | Remove conditional for FileFinder in pkg_resourcesAnderson Bravalheri2023-01-181-5/+2
| | | | | | | | | | | | | | | | | | | | FileFiler should always be present in Python 3.3+
| * | | | Wrap deprecated pkgutil usage in pkg_resources in conditionalAnderson Bravalheri2023-01-181-2/+5
| | | | |
* | | | | Docs: Link directly to PEPs (#3770)Anderson Bravalheri2023-01-204-7/+4
|\ \ \ \ \
| * | | | | Use Sphinx :pep: role to link directly to PEPsHugo van Kemenade2023-01-144-7/+4
| | | | | |
* | | | | | Add informative notes for the InvalidVersion error (#3776)Anderson Bravalheri2023-01-203-1/+31
|\ \ \ \ \ \
| * | | | | | Add news fragmentAnderson Bravalheri2023-01-201-0/+2
| | | | | | |
| * | | | | | Revert "Make deprecation warning more visible and mention --use-pep517"Anderson Bravalheri2023-01-192-21/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This reverts commit 4fadb9505b02a88858e54fd762e4958886a82bcb. It seems that the changes that were introduced prevent the tests from ever finishing to run.
| * | | | | | Make deprecation warning more visible and mention --use-pep517Anderson Bravalheri2023-01-192-6/+21
| | | | | | |
| * | | | | | Avoid unecessarily lengthy tracebackAnderson Bravalheri2023-01-181-1/+1
| | | | | | |
| * | | | | | Add informative notes for the InvalidVersion error (LegacyVersion removal)Anderson Bravalheri2023-01-182-1/+29
| | |/ / / / | |/| | | |
* | | | | | Automatically add files referenced by configuration to sdist (#3779)Anderson Bravalheri2023-01-209-22/+103
|\ \ \ \ \ \ | |/ / / / / |/| | | | |
| * | | | | Add versionchanged note to docsAnderson Bravalheri2023-01-202-8/+4
| | | | | |
| * | | | | Remove empty line in news fragmentAnderson Bravalheri2023-01-201-1/+0
| | | | | |
| * | | | | Log referenced files when loggingAnderson Bravalheri2023-01-201-1/+2
| | | | | |
| * | | | | Add news fragmentAnderson Bravalheri2023-01-191-0/+4
| | | | | |
| * | | | | Adapt note about file directive and MANIFEST.inAnderson Bravalheri2023-01-192-10/+20
| | | | | |
| * | | | | Update setuptools sdist docs warningSinclert Pérez2023-01-191-3/+3
| | | | | |
| * | | | | Ensure file referenced by 'license.file' in pyproject.toml is added to sdistAnderson Bravalheri2023-01-191-0/+1
| | | | | |
| * | | | | Capture expectations about 'project.license.file' in pyproject.tomlAnderson Bravalheri2023-01-191-3/+7
| | | | | | | | | | | | | | | | | | | | | | | | … to be automatically added to the sdist
| * | | | | Ensure file referenced by 'readme' in pyproject.toml is added to sdistAnderson Bravalheri2023-01-191-3/+9
| | | | | |
| * | | | | Refactor tests for file directiveAnderson Bravalheri2023-01-191-35/+22
| | | | | |
| * | | | | Expand test to account for pyproject's readmeAnderson Bravalheri2023-01-191-14/+15
| | | | | |
| * | | | | Add files referenced by 'file=' directive in pyproject.toml to sdistAnderson Bravalheri2023-01-191-3/+6
| | | | | |
| * | | | | Capture expectation about file directive in pyproject.toml to be in the sdistAnderson Bravalheri2023-01-191-1/+27
| | | | | |
| * | | | | Add files referenced by file: directive in setup.cfg to sdistAnderson Bravalheri2023-01-193-5/+24
| | | | | |
| * | | | | Capture expectation about file: directive in setup.cfg to be in the sdistAnderson Bravalheri2023-01-191-0/+24
|/ / / / /
* | | | | DOC: fix section for python_requires in setup.cfg (#3774)Anderson Bravalheri2023-01-181-1/+1
|\ \ \ \ \
| * | | | | DOC: fix section for python_requires in setup.cfgMike Taves2023-01-181-1/+1
|/ / / / /
* | | | | Bump version: 65.7.0 → 66.0.0v66.0.0Jason R. Coombs2023-01-155-4/+15
| | | | |
* | | | | Merge pull request #2822 from pypa/debt/remove-legacy-versionJason R. Coombs2023-01-156-128/+55
|\ \ \ \ \ | | | | | | | | | | | | Remove reliance on LegacyVersion
| * | | | | Update test_invalid_version to expect failure.Jason R. Coombs2023-01-141-7/+20
| | | | | |
| * | | | | ⚫ Fade to black.Jason R. Coombs2023-01-141-11/+12
| | | | | |
| * | | | | Merge branch 'main' into debt/remove-legacy-versionJason R. Coombs2023-01-14464-24507/+55100
| |\ \ \ \ \
| * \ \ \ \ \ Merge branch 'main' into debt/remove-legacy-versionJason R. Coombs2022-02-12447-4095/+24389
| |\ \ \ \ \ \