summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Bump version: 63.2.0 → 63.3.0v63.3.0Jason R. Coombs2022-07-313-2/+16
|
* Merge pull request #3475 from pypa/distutils-129480bJason R. Coombs2022-07-3188-797/+389
|\ | | | | Merge with distutils@129480b
| * Update 'bdist' format addition to assume a single 'format_commands' as a ↵Jason R. Coombs2022-07-311-2/+6
| | | | | | | | dictionary, but fall back to the dual dict/list model for compatibility with stdlib.
| * Add changelog.Jason R. Coombs2022-07-311-0/+1
| |
| * Merge https://github.com/pypa/distutils into distutils-129480bJason R. Coombs2022-07-3186-795/+382
| |\ |/ /
| * ⚫ Fade to black.Jason R. Coombs2022-07-313-13/+16
| |
| * Assign result to a check and use that to consolidate return into a single ↵Jason R. Coombs2022-07-311-6/+8
| | | | | | | | expression.
| * Calculate the CFLAGS match early and simply include that in the choice on ↵Jason R. Coombs2022-07-311-9/+5
| | | | | | | | whether to change the root.
| * Eliminate repetition by iterating over the problem space.Jason R. Coombs2022-07-311-27/+21
| |
| * Rewrite the comment to focus on the mechanics and not the author.Jason R. Coombs2022-07-311-4/+4
| |
| * Extract _library_root to disentangle that concern from the other calculations.Jason R. Coombs2022-07-311-40/+41
| |
| * Rewrite comment in imperative voice. Use bulleted list for clarity. Short ↵Jason R. Coombs2022-07-311-11/+15
| | | | | | | | circuit when functionality isn't required, rather than leaving a dangling empty branch.
| * Merge pull request #161 from DWesl/patch-3Jason R. Coombs2022-07-311-8/+9
| |\ | | | | | | DOC: Extend Windows rpath error message with likely cause
| | * Consolidate messaging when runtime_library_dirs is indicated.Jason R. Coombs2022-07-311-10/+9
| | |
| | * DOC: Extend Windows rpath error message with likely causeDWesl2022-07-301-1/+3
| | | | | | | | | | | | | | | Extend the error message for attempting to call `runtime_library_dir_option` on Windows with the most likely way I have found to trigger the call, creating an `Extension` that specifies `runtime_library_dirs`. Hopefully this will give users something to search for in their `setup.py` and a starting point for what to change. Inspired by pypa/setuptools#3450.
| * | Fix issue with Setuptools integration.Jason R. Coombs2022-07-311-2/+11
| | |
| * | Consolidate 'format_command' and 'format_commands' now that order is ↵Jason R. Coombs2022-07-302-18/+5
| | | | | | | | | | | | retained in dicts.
| * | Replace if/else with simple algebra.Jason R. Coombs2022-07-301-5/+3
| | |
| * | 👹 Feed the hobgoblins (delint).Jason R. Coombs2022-07-305-13/+11
| | |
| * | 👹 Feed the hobgoblins (delint).Jason R. Coombs2022-07-303-12/+25
| | |
| * | 👹 Feed the hobgoblins (delint).Jason R. Coombs2022-07-301-2/+2
| | |
| * | 👹 Feed the hobgoblins (delint).Jason R. Coombs2022-07-301-1/+1
| | |
| * | 👹 Feed the hobgoblins (delint).Jason R. Coombs2022-07-308-16/+5
| | |
| * | 👹 Feed the hobgoblins (delint).Jason R. Coombs2022-07-303-5/+13
| | |
| * | 👹 Feed the hobgoblins (delint).Jason R. Coombs2022-07-306-8/+3
| | |
| * | 👹 Feed the hobgoblins (delint).Jason R. Coombs2022-07-3029-71/+85
| | |
| * | Extract expected values into a single list.Jason R. Coombs2022-07-301-4/+3
| | |
| * | ⚫ Fade to black.Jason R. Coombs2022-07-306-9/+25
| | |
| * | 👹 Feed the hobgoblins (delint).Jason R. Coombs2022-07-3018-21/+28
| | |
| * | Implement ZLIB_SUPPORT as a pytest fixture.Jason R. Coombs2022-07-304-38/+28
| |/
| * Replace EnvironGuard with a pytest fixture.Jason R. Coombs2022-07-3013-31/+56
| |
| * Remove unittest cruftJason R. Coombs2022-07-3042-397/+12
| |
| * Remove test suite construction in distutils.testsJason R. Coombs2022-07-302-52/+2
| |
| * Move import of _msvccompiler into the imports section. Skip only those tests ↵Jason R. Coombs2022-07-301-14/+8
| | | | | | | | that fail based on winreg.
* | Merge pull request #3474 from jnoortheen/patch-1Anderson Bravalheri2022-07-311-1/+1
|\ \ | | | | | | docs: correct calling setuptools commands
| * | docs: correct calling setuptools commandsNoorhteen Raja NJ2022-07-311-1/+1
|/ /
* | Move -dev to each non-pypy version. Workaround for actions/setup-python#213.Jason R. Coombs2022-07-301-4/+4
| |
* | Merge https://github.com/jaraco/skeletonJason R. Coombs2022-07-302-7/+7
|\ \
| * | Pin flake8. Workaround for tholo/pytest-flake8#87.Jason R. Coombs2022-07-301-0/+2
| | |
| * | Use Python 3.11 for cutting releases.Jason R. Coombs2022-07-291-1/+1
| | |
| * | Use '-dev' for every Python version. Ref actions/setup-python#213.Jason R. Coombs2022-07-291-6/+4
| | |
| * | Ran pre-commit autoupdateJason R. Coombs2022-07-111-1/+1
| | |
* | | Merge pull request #3471 from edgarriba/patch-1Anderson Bravalheri2022-07-291-1/+1
|\ \ \ | | | | | | | | type in quickstart.rst
| * | | type in quickstart.rstEdgar Riba2022-07-291-1/+1
|/ / /
* | | Merge pull request #3463 from brampono/patch-1Jason R. Coombs2022-07-271-2/+2
|\ \ \ | | | | | | | | Fix typo `find_namespaces:` to `find_namespace:`
| * | | Fix typo `find_namespaces:` to `find_namespace:`Brody Rampono2022-07-251-2/+2
|/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | I believe the correct `setup.cfg` packaging option is `find_namespace:`, not `find_namespaces:` I can't find any other references to `find_namespaces` in the docs or repository. Using `find_namespaces:` causes packaging to fail. Example to reproduce: ``` . ├── pyproject.toml ├── setup.cfg └── src ├── pkg1 │   └── namespace │   └── __init__.py └── pkg2 └── __init__.py ``` Contents of `pyproject.toml`: ``` [build-system] requires = ["setuptools"] build-backend = "setuptools.build_meta" ``` Contents of `setup.cfg`: ``` [metadata] name = pkg_test [options] packages = find_namespaces: package_dir = =src [options.packages.find] where = src ``` ``` $ pip install . > ... > error: package directory 'src/find_namespaces:' does not exist > ... ```
* | | Use the new `pytest-enabler` config section for xdist (#3456)Anderson Bravalheri2022-07-191-1/+1
|\ \ \
| * | | Use the new pytest-enabler config section for xdistAnderson Bravalheri2022-07-191-1/+1
|/ / /
* | | Minor edits to integration tests.Jason R. Coombs2022-07-131-13/+13
| | |
* | | Just assume exactly one sdist is available.Jason R. Coombs2022-07-131-10/+2
| | |