Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
| * | | | | Remove msvc hack for Numpy < 1.11.2 | Michał Górny | 2023-01-21 | 3 | -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-vers | Anderson Bravalheri | 2023-01-21 | 1 | -2/+2 | |
|\ \ \ \ \ | | | | | | | | | | | | | Fix version syntax in test_nowarn_accidental_env_marker_misconfig | |||||
| * | | | | | Fix version syntax in test_nowarn_accidental_env_marker_misconfig | Michał Górny | 2023-01-21 | 1 | -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-test | Anderson Bravalheri | 2023-01-21 | 1 | -1/+2 | |
|\ \ \ \ \ | |/ / / / |/| | | | | Fix dependency syntax error in test_dist_info | |||||
| * | | | | Fix dependency syntax error in test_dist_info | Michał Górny | 2023-01-21 | 1 | -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.1 | Anderson Bravalheri | 2023-01-20 | 4 | -4/+12 | |
| | | | | ||||||
* | | | | Handle strings in pyprject.toml's tool.setuptools.dynamic.*.file (#3782) | Anderson Bravalheri | 2023-01-20 | 3 | -5/+24 | |
|\ \ \ \ | ||||||
| * | | | | Account for windows paths in tests | Anderson Bravalheri | 2023-01-20 | 1 | -1/+5 | |
| | | | | | ||||||
| * | | | | Avoid exhausting iterator | Anderson Bravalheri | 2023-01-20 | 1 | -3/+2 | |
| | | | | | ||||||
| * | | | | Delay import | Anderson Bravalheri | 2023-01-20 | 1 | -1/+2 | |
| | | | | | ||||||
| * | | | | Add news fragment | Anderson Bravalheri | 2023-01-20 | 1 | -0/+2 | |
| | | | | | ||||||
| * | | | | Account for file directive with string in pyproject.toml | Anderson Bravalheri | 2023-01-20 | 1 | -2/+4 | |
| | | | | | ||||||
| * | | | | Capture expectations of issue 3781 | Anderson Bravalheri | 2023-01-20 | 1 | -4/+15 | |
|/ / / / | ||||||
* | | | | Bump version: 66.0.0 → 66.1.0v66.1.0 | Anderson Bravalheri | 2023-01-20 | 6 | -8/+19 | |
| | | | | ||||||
* | | | | Flip conditionals around package finders in pkg_resources (#3685) | Anderson Bravalheri | 2023-01-20 | 2 | -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 fragment | Anderson Bravalheri | 2023-01-18 | 1 | -0/+1 | |
| | | | | | ||||||
| * | | | | Remove conditional for FileFinder in pkg_resources | Anderson Bravalheri | 2023-01-18 | 1 | -5/+2 | |
| | | | | | | | | | | | | | | | | | | | | FileFiler should always be present in Python 3.3+ | |||||
| * | | | | Wrap deprecated pkgutil usage in pkg_resources in conditional | Anderson Bravalheri | 2023-01-18 | 1 | -2/+5 | |
| | | | | | ||||||
* | | | | | Docs: Link directly to PEPs (#3770) | Anderson Bravalheri | 2023-01-20 | 4 | -7/+4 | |
|\ \ \ \ \ | ||||||
| * | | | | | Use Sphinx :pep: role to link directly to PEPs | Hugo van Kemenade | 2023-01-14 | 4 | -7/+4 | |
| | | | | | | ||||||
* | | | | | | Add informative notes for the InvalidVersion error (#3776) | Anderson Bravalheri | 2023-01-20 | 3 | -1/+31 | |
|\ \ \ \ \ \ | ||||||
| * | | | | | | Add news fragment | Anderson Bravalheri | 2023-01-20 | 1 | -0/+2 | |
| | | | | | | | ||||||
| * | | | | | | Revert "Make deprecation warning more visible and mention --use-pep517" | Anderson Bravalheri | 2023-01-19 | 2 | -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-pep517 | Anderson Bravalheri | 2023-01-19 | 2 | -6/+21 | |
| | | | | | | | ||||||
| * | | | | | | Avoid unecessarily lengthy traceback | Anderson Bravalheri | 2023-01-18 | 1 | -1/+1 | |
| | | | | | | | ||||||
| * | | | | | | Add informative notes for the InvalidVersion error (LegacyVersion removal) | Anderson Bravalheri | 2023-01-18 | 2 | -1/+29 | |
| | |/ / / / | |/| | | | | ||||||
* | | | | | | Automatically add files referenced by configuration to sdist (#3779) | Anderson Bravalheri | 2023-01-20 | 9 | -22/+103 | |
|\ \ \ \ \ \ | |/ / / / / |/| | | | | | ||||||
| * | | | | | Add versionchanged note to docs | Anderson Bravalheri | 2023-01-20 | 2 | -8/+4 | |
| | | | | | | ||||||
| * | | | | | Remove empty line in news fragment | Anderson Bravalheri | 2023-01-20 | 1 | -1/+0 | |
| | | | | | | ||||||
| * | | | | | Log referenced files when logging | Anderson Bravalheri | 2023-01-20 | 1 | -1/+2 | |
| | | | | | | ||||||
| * | | | | | Add news fragment | Anderson Bravalheri | 2023-01-19 | 1 | -0/+4 | |
| | | | | | | ||||||
| * | | | | | Adapt note about file directive and MANIFEST.in | Anderson Bravalheri | 2023-01-19 | 2 | -10/+20 | |
| | | | | | | ||||||
| * | | | | | Update setuptools sdist docs warning | Sinclert Pérez | 2023-01-19 | 1 | -3/+3 | |
| | | | | | | ||||||
| * | | | | | Ensure file referenced by 'license.file' in pyproject.toml is added to sdist | Anderson Bravalheri | 2023-01-19 | 1 | -0/+1 | |
| | | | | | | ||||||
| * | | | | | Capture expectations about 'project.license.file' in pyproject.toml | Anderson Bravalheri | 2023-01-19 | 1 | -3/+7 | |
| | | | | | | | | | | | | | | | | | | | | | | | | … to be automatically added to the sdist | |||||
| * | | | | | Ensure file referenced by 'readme' in pyproject.toml is added to sdist | Anderson Bravalheri | 2023-01-19 | 1 | -3/+9 | |
| | | | | | | ||||||
| * | | | | | Refactor tests for file directive | Anderson Bravalheri | 2023-01-19 | 1 | -35/+22 | |
| | | | | | | ||||||
| * | | | | | Expand test to account for pyproject's readme | Anderson Bravalheri | 2023-01-19 | 1 | -14/+15 | |
| | | | | | | ||||||
| * | | | | | Add files referenced by 'file=' directive in pyproject.toml to sdist | Anderson Bravalheri | 2023-01-19 | 1 | -3/+6 | |
| | | | | | | ||||||
| * | | | | | Capture expectation about file directive in pyproject.toml to be in the sdist | Anderson Bravalheri | 2023-01-19 | 1 | -1/+27 | |
| | | | | | | ||||||
| * | | | | | Add files referenced by file: directive in setup.cfg to sdist | Anderson Bravalheri | 2023-01-19 | 3 | -5/+24 | |
| | | | | | | ||||||
| * | | | | | Capture expectation about file: directive in setup.cfg to be in the sdist | Anderson Bravalheri | 2023-01-19 | 1 | -0/+24 | |
|/ / / / / | ||||||
* | | | | | DOC: fix section for python_requires in setup.cfg (#3774) | Anderson Bravalheri | 2023-01-18 | 1 | -1/+1 | |
|\ \ \ \ \ | ||||||
| * | | | | | DOC: fix section for python_requires in setup.cfg | Mike Taves | 2023-01-18 | 1 | -1/+1 | |
|/ / / / / | ||||||
* | | | | | Bump version: 65.7.0 → 66.0.0v66.0.0 | Jason R. Coombs | 2023-01-15 | 5 | -4/+15 | |
| | | | | | ||||||
* | | | | | Merge pull request #2822 from pypa/debt/remove-legacy-version | Jason R. Coombs | 2023-01-15 | 6 | -128/+55 | |
|\ \ \ \ \ | | | | | | | | | | | | | Remove reliance on LegacyVersion | |||||
| * | | | | | Update test_invalid_version to expect failure. | Jason R. Coombs | 2023-01-14 | 1 | -7/+20 | |
| | | | | | | ||||||
| * | | | | | ⚫ Fade to black. | Jason R. Coombs | 2023-01-14 | 1 | -11/+12 | |
| | | | | | | ||||||
| * | | | | | Merge branch 'main' into debt/remove-legacy-version | Jason R. Coombs | 2023-01-14 | 464 | -24507/+55100 | |
| |\ \ \ \ \ | ||||||
| * \ \ \ \ \ | Merge branch 'main' into debt/remove-legacy-version | Jason R. Coombs | 2022-02-12 | 447 | -4095/+24389 | |
| |\ \ \ \ \ \ |