summaryrefslogtreecommitdiff
path: root/setuptools
Commit message (Collapse)AuthorAgeFilesLines
* Remove code reliant on bdist_wininst. Ref #3525.bugfix/3525-errorJason R. Coombs2022-08-151-9/+0
|
* Merge https://github.com/pypa/distutils into distutils-fac564fJason R. Coombs2022-08-139-1640/+25
|
* Merge pull request #3505 from pypa/distutils-cc017c7Jason R. Coombs2022-08-133-1693/+0
|\ | | | | Remove old msvc modules (pypa/distutils@cc017c7)
| * Merge https://github.com/pypa/distutils into distutils-cc017c7Jason R. Coombs2022-08-113-1693/+0
| |
* | Fix other problems with editable installs (#3517)Anderson Bravalheri2022-08-123-16/+55
|\ \ | | | | | | | | | | | | | | | | | | 1. Ensure commands are finalized, to ensure plat_name is set. 2. Filter out temporary source files and prevent setuptools for attempting to consider them as part of the data_files/package_data list
| * | Filter out temporary source files from being added to sdistAnderson Bravalheri2022-08-121-13/+20
| | |
| * | Fix test fileAnderson Bravalheri2022-08-121-2/+2
| | |
| * | Ensure commands are finalized before using themAnderson Bravalheri2022-08-121-3/+4
| | |
| * | Replicate error in issue 3513Anderson Bravalheri2022-08-121-0/+31
| | |
* | | Fix flake8 errorAnderson Bravalheri2022-08-121-0/+1
| | |
* | | Prevent optional extensions from failing in build_extAnderson Bravalheri2022-08-121-1/+2
| | |
* | | Add test for non-optional extensionsAnderson Bravalheri2022-08-121-20/+36
| | |
* | | Replicate error in issue 3510Anderson Bravalheri2022-08-121-0/+20
|/ /
* | Handle accidental virtual namespaces in editable install (#3512)Anderson Bravalheri2022-08-122-3/+59
|\ \
| * | Add comments about accidental virtual namespacesAnderson Bravalheri2022-08-121-1/+9
| | |
| * | Add missing virtual namespace to testsAnderson Bravalheri2022-08-121-1/+1
| | |
| * | Emulate accidental namespaces from regular installationAnderson Bravalheri2022-08-121-1/+1
| | |
| * | Replicate error in issue 3504Anderson Bravalheri2022-08-121-0/+48
| |/
* | Parametrise command nameAnderson Bravalheri2022-08-121-2/+2
| |
* | Safeguard editable installs against build_py errorsAnderson Bravalheri2022-08-122-3/+46
| |
* | Replicate error issue 3501Anderson Bravalheri2022-08-121-4/+47
|/
* Prevent errors in editable install and external ``.egg-info`` (#3503)Anderson Bravalheri2022-08-112-4/+54
|\
| * Avoid mentioning project names in CHANGELOGAnderson Bravalheri2022-08-111-1/+0
| | | | | | | | ... since they may change implementantion
| * Filter external egg_info filesAnderson Bravalheri2022-08-111-3/+17
| |
| * Replicate error in issue 3500Anderson Bravalheri2022-08-111-0/+37
| |
* | Fix issue with editable install and single module distributionsAnderson Bravalheri2022-08-112-1/+30
|\ \
| * | Fix problem with editable install and single module packagesAnderson Bravalheri2022-08-111-1/+1
| | |
| * | Reproduce problem with editable install in issue 3499Anderson Bravalheri2022-08-111-0/+29
| |/
* | editable_install: Fix missing dry-run for legacy namespacesAnderson Bravalheri2022-08-111-0/+1
| |
* | editable_install: Ensure tests with legacy namespaces runAnderson Bravalheri2022-08-111-0/+7
| |
* | Fix typo in editable_wheel.pyleonixyz2022-08-111-1/+1
|/
* Merge PEP 660 implementation (#3488)Anderson Bravalheri2022-08-1122-263/+2636
|\
| * Merge 'main' into feature/pep660Anderson Bravalheri2022-08-0623-205/+321
| |\
| * \ Merge branch 'main' into feature/pep660Anderson Bravalheri2022-08-051-1/+6
| |\ \
| * | | Prevent test errors on Windows due to path sepAnderson Bravalheri2022-08-041-4/+8
| | | |
| * | | Improve editable_wheel command helpAnderson Bravalheri2022-08-031-3/+3
| | | |
| * | | Use better wording in description of 'compat' editable modeAnderson Bravalheri2022-08-031-1/+1
| | | |
| * | | Add test for 'compat' editable modeAnderson Bravalheri2022-08-031-0/+33
| | | |
| * | | Add deprecation warning for compat editable modeAnderson Bravalheri2022-08-031-2/+15
| | | |
| * | | Adapt test_build_meta to the new format of editable_wheel optionsAnderson Bravalheri2022-08-031-5/+5
| | | |
| * | | Add compat mode to editable installAnderson Bravalheri2022-08-032-22/+41
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is only a transitional measure that can be temporarily used by users to help them to adapt to the PEP 660 implementation. In this commit the argument for the `editable_wheel` command is changed from the flag form `--strict` to `--mode=strict`.
| * | | Merge branch 'main' into feature/pep660Anderson Bravalheri2022-08-0374-1064/+1037
| |\ \ \
| * | | | Avoid using 'SETUPTOOLS_EDITABLE' env var in testAnderson Bravalheri2022-08-021-24/+28
| | | | |
| * | | | Use venv to isolate test_legacy_editable_installAnderson Bravalheri2022-08-021-6/+5
| | | | | | | | | | | | | | | | | | | | | | | | | This is a test fix to prevent this test case for breaking test isolation.
| * | | | Use set comparisson in test instead of listAnderson Bravalheri2022-08-021-3/+3
| | | | |
| * | | | Add prepare_metadata_for_build_editable to build_meta.__all__Anderson Bravalheri2022-08-021-0/+1
| | | | |
| * | | | Merge branch 'main' into feature/pep660Anderson Bravalheri2022-08-0287-797/+388
| |\ \ \ \
| * \ \ \ \ Merge 'upstream/main' into feature/pep660Anderson Bravalheri2022-07-215-34/+31
| |\ \ \ \ \
| * \ \ \ \ \ Merge 'upstream/main' into feature/pep660Anderson Bravalheri2022-07-0420-286/+202
| |\ \ \ \ \ \
| * | | | | | | Fix grammar problems with paragraph in docsAnderson Bravalheri2022-07-031-1/+1
| | | | | | | |