summaryrefslogtreecommitdiff
path: root/distutils/command
Commit message (Expand)AuthorAgeFilesLines
* 👹 Feed the hobgoblins (delint).Jason R. Coombs2022-03-271-5/+6
* Don't warn on false positive for author/maintainer's emailAnderson Bravalheri2022-02-231-9/+31
* Merge pull request #113 from zooba/issue112Jason R. Coombs2022-01-301-3/+9
|\
| * Only rely on py_version_nodot_plat where not present (Python 3.9 and earlier).Jason R. Coombs2022-01-301-5/+7
| * Fixes #112 install command doesn't use platform in nt_user schemeSteve Dower2022-01-241-2/+6
* | Use super()谭九鼎2022-01-262-2/+2
|/
* In install command, honor config_vars from sysconfig. Fixes pypa/distutils#103.Jason R. Coombs2022-01-031-9/+11
* Move 'str' cast into the one place where it's needed and allow config_vars to...Jason R. Coombs2021-12-231-3/+2
* Cast value to str and provide a comment explaining why. Ref pypa/distutils#87.Jason R. Coombs2021-12-231-1/+2
* When headers are missing in a preferred scheme, use the default scheme as a f...Jason R. Coombs2021-12-231-8/+21
* Fix AttributeError when sysconfig does not supply platsubdirAnthony Sottile2021-12-221-1/+1
* Add support for 'platsubdir'. Fixes pypa/distutils#85.Jason R. Coombs2021-12-221-0/+1
* Extract _select_scheme function to be re-used by Setuptools.Jason R. Coombs2021-12-201-23/+42
* Honor sysconfig.get_preferred_scheme when selecting install schemes. Fixes #76.Jason R. Coombs2021-12-171-1/+14
* Extract _pypy_hack method.Jason R. Coombs2021-12-171-8/+9
* Extract 'incomplete_scheme' as a variable for readability.Jason R. Coombs2021-12-171-4/+9
* Merge pull request #42 from imba-tjd/patch-2Jason R. Coombs2021-12-121-3/+1
|\
| * sys._home -> sys.base_exec_prefix谭九鼎2021-05-171-3/+1
* | Move _prefix_addition inline, so it's only configurable through sysconfig.Jason R. Coombs2021-11-271-4/+5
* | Load _prefix_addition attribute directly from sysconfigMiro Hrončok2021-11-241-1/+1
* | Expose _prefix_addition as a class property on install.Jason R. Coombs2021-11-201-18/+6
* | Incorporate Fedora's distutil patchMiro Hrončok2021-11-191-2/+18
* | Add comments to help protect these interfaces from refactoring without consid...Jason R. Coombs2021-11-171-0/+4
* | Create hooks and implement Debian's patches against those hooks. Fixes #2.Jason R. Coombs2021-11-131-4/+7
* | Rename 'posix' to 'unix' to match sysconfig. Merge both definitions with sysc...Jason R. Coombs2021-11-121-11/+19
* | Revert "Rename 'headers' to 'include' to match sysconfig."Jason R. Coombs2021-11-121-17/+13
* | Prefer 'posix_*' to 'unix_*'Jason R. Coombs2021-11-061-4/+4
* | Copy installed_base from sysconfig.get_config_vars.Jason R. Coombs2021-11-061-2/+5
* | Merge branch 'main' into feature/local-schemesJason R. Coombs2021-11-065-49/+28
|\ \
| * | Fix PyPy3.8 install locationsIsuru Fernando2021-09-211-9/+17
| * | Merge pull request #52 from longnguyen2004/mainJason R. Coombs2021-09-211-1/+1
| |\ \
| | * | Prefer sysconfig.python_buildLong Nguyen2021-09-051-1/+1
| * | | adopt more standard schema for pypy3.8 (#51)Matti Picus2021-09-101-0/+1
| * | | remove 2to3Thomas Grainger2021-07-222-34/+2
| |/ /
| * | Prefer using `Distribution.has_ext_modules` methodmessense2021-06-202-2/+2
| * | Fixed get_export_symbols for unicode filenamesda-woods2021-04-181-3/+5
| |/
* | Replace shell/Perl-style variables in install schemes with format-style.Jason R. Coombs2021-11-061-35/+35
* | Rename 'headers' to 'include' to match sysconfig.Jason R. Coombs2021-11-061-13/+17
* | Prefer contextlib.suppress to except/passJason R. Coombs2021-11-061-3/+2
* | Prefer public APIs for sysconfig schemes.Jason R. Coombs2021-11-061-1/+5
* | Replace instance method with global function.Jason R. Coombs2021-09-211-16/+17
* | Remove special casing for Debian. Instead, Debian should make sure the scheme...Jason R. Coombs2021-09-211-16/+1
* | Remove 'unix_local' install scheme.Jason R. Coombs2021-09-211-19/+0
* | In _load_schemes, actually return the schemes and avoid mutating the global s...Jason R. Coombs2021-09-211-8/+11
* | Remove is_rpm_build, unneeded.Jason R. Coombs2021-09-211-5/+1
* | Only catch relevant exeptions.Jason R. Coombs2021-09-211-1/+1
* | Allow sysconfig to override install schemes and provide some compatibility ov...Jason R. Coombs2021-01-231-0/+50
|/
* Restore pythonlib support on older Pythons. Fixes pypa/distutils#9.Jason R. Coombs2020-09-012-1/+32
* Merge branch 'cpython'Jason R. Coombs2020-07-071-3/+3
* add pypy schemasmattip2020-07-011-0/+20