Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | | Make __file__ an absolute path in setuptools.build_meta | hauntsaninja | 2023-01-24 | 1 | -1/+1 | |
|/ | | | | | | | | | This is a difference between pip's legacy wheel build (or direct invocations of setup.py) and the PEP 517 build. While setup.py scripts that rely on this are fragile, it was quite painful to debug! Since Python 3.4, `__file__` is usually an absolute path, so this change might result in fewer surprises. | |||||
* | Remove pypackaging from extern in setuptools | Anderson Bravalheri | 2023-01-23 | 1 | -2/+9 | |
| | ||||||
* | Update implementation to consider new packaging exceptions | Anderson Bravalheri | 2023-01-23 | 1 | -11/+16 | |
| | ||||||
* | Update test expectations to match new packaging version | Anderson Bravalheri | 2023-01-23 | 1 | -0/+20 | |
| | ||||||
* | Update vendored packaging/jaraco.context for setuptools | Anderson Bravalheri | 2023-01-23 | 51 | -12047/+1805 | |
| | ||||||
* | Merge pull request #3741 from mgorny/msvc-hack | Jason R. Coombs | 2023-01-21 | 2 | -23/+0 | |
|\ | | | | | Remove msvc hack for Numpy < 1.11.2 | |||||
| * | Remove msvc hack for Numpy < 1.11.2 | Michał Górny | 2023-01-21 | 2 | -23/+0 | |
| | | | | | | | | | | | | | | 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. | |||||
* | | 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 | |||||
* | | 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' ``` | |||||
* | 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 | |
| | ||||||
* | 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 | |
| | ||||||
* | Add informative notes for the InvalidVersion error (#3776) | Anderson Bravalheri | 2023-01-20 | 1 | -0/+21 | |
|\ | ||||||
| * | Revert "Make deprecation warning more visible and mention --use-pep517" | Anderson Bravalheri | 2023-01-19 | 1 | -20/+5 | |
| | | | | | | | | | | | | | | 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 | 1 | -5/+20 | |
| | | ||||||
| * | Add informative notes for the InvalidVersion error (LegacyVersion removal) | Anderson Bravalheri | 2023-01-18 | 1 | -0/+21 | |
| | | ||||||
* | | Log referenced files when logging | Anderson Bravalheri | 2023-01-20 | 1 | -1/+2 | |
| | | ||||||
* | | 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 | |
|/ | ||||||
* | 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 | 292 | -15095/+34312 | |
|\ | ||||||
| * | Update vendored transitive dependencies. | Jason R. Coombs | 2023-01-13 | 27 | -142/+212 | |
| | | ||||||
| * | Merge: Catching excption from utime and providing human-readable error ↵ | Anderson Bravalheri | 2023-01-11 | 2 | -1/+21 | |
| |\ | | | | | | | | | | description (#3716) | |||||
| | * | Improve code formatting | Anderson Bravalheri | 2023-01-11 | 1 | -4/+9 | |
| | | | ||||||
| | * | Test added. Ref #3667. | Andrzej Kaczmarczyk | 2022-11-29 | 1 | -0/+11 | |
| | | | ||||||
| | * | Catching the exception of utime in order to provide a path to the file that ↵ | Andrzej Kaczmarczyk | 2022-11-28 | 1 | -1/+5 | |
| | | | | | | | | | | | | was subject to the utime call; originally, the exception from utime does not point to this filepath. Ref #3667. | |||||
| * | | Merge: Add htmlcov to FlatLayoutModuleFinder.DEFAULT_EXCLUDE (#3715) | Anderson Bravalheri | 2023-01-11 | 1 | -0/+1 | |
| |\ \ | ||||||
| | * | | add htmlcov to FlatLayoutModuleFinder.DEFAULT_EXCLUDE | Demian Brecht | 2022-11-28 | 1 | -0/+1 | |
| | |/ | ||||||
| * | | Merge: Fixes incomplete getattr statement (#3714) | Anderson Bravalheri | 2023-01-11 | 1 | -1/+1 | |
| |\ \ | ||||||
| | * | | Fix getattr statement | Anderson Bravalheri | 2022-11-28 | 1 | -1/+1 | |
| | |/ | ||||||
| * | | Update failing test due to latest versions of pip_run | Anderson Bravalheri | 2023-01-07 | 1 | -1/+1 | |
| | | | | | | | | | | | | | | | | | | It seems that the latest version of `pip_run` can no longer handle `str` objects in `inject_sitecustomize` (see `https://github.com/jaraco/pip-run/commit/30c62a0eadd5af422709e75993ff19a39fe69733`). | |||||
| * | | Add support for testing pip<23 and drop support for pip<20. | Jason R. Coombs | 2022-12-16 | 1 | -2/+1 | |
| | | | ||||||
| * | | xfail more tests on Python 3.12+ for older pips. Ref #3727. | Jason R. Coombs | 2022-12-16 | 1 | -3/+10 | |
| | | | ||||||
| * | | xfail tests on Python 3.12+ for older pips. Ref #3727. | Jason R. Coombs | 2022-12-16 | 1 | -2/+14 | |
| | | | ||||||
| * | | ⚫ Fade to black. | Jason R. Coombs | 2022-12-16 | 1 | -10/+21 | |
| |/ | ||||||
| * | Remove wrong comment | Anderson Bravalheri | 2022-11-23 | 1 | -1/+1 | |
| | | ||||||
| * | Replace condition to patch distutils.dist.log | Anderson Bravalheri | 2022-11-23 | 1 | -1/+2 | |
| | | | | | | | | | | As `distutils.log.Log` was backfilled for compatibility we no longer can use this as a condition. | |||||
| * | Add simple regression test for logging patches | Anderson Bravalheri | 2022-11-23 | 1 | -0/+17 | |
| | | ||||||
| * | Merge pypa/distutils@3e9d47e with fix for distutils.log (#3705) | Anderson Bravalheri | 2022-11-23 | 1 | -0/+19 | |
| |\ | ||||||
| | * | Merge https://github.com/pypa/distutils into bugfix/3693-distutils-3e9d47e | Jason R. Coombs | 2022-11-22 | 1 | -0/+19 | |
| | | |