Allow multiple nested inclusions of the same requirements file again. ([#13046](https://github.com/pypa/pip/issues/13046) <https://github.com/pypa/pip/issues/13046>_)
24.3 (2024-10-27)
Deprecations and Removals
Deprecate wheel filenames that are not compliant with :pep:440. ([#12918](https://github.com/pypa/pip/issues/12918) <https://github.com/pypa/pip/issues/12918>_)
Features
Detect recursively referencing requirements files and help users identify
the source. ([#12653](https://github.com/pypa/pip/issues/12653) <https://github.com/pypa/pip/issues/12653>_)
Support for :pep:730 iOS wheels. ([#12961](https://github.com/pypa/pip/issues/12961) <https://github.com/pypa/pip/issues/12961>_)
Bug Fixes
Display a better error message when an already installed package has an invalid requirement. ([#12953](https://github.com/pypa/pip/issues/12953) <https://github.com/pypa/pip/issues/12953>_)
Ignore PIP_TARGET and pip.confglobal.target when preparing a build environment. ([#8438](https://github.com/pypa/pip/issues/8438) <https://github.com/pypa/pip/issues/8438>_)
Restore support for macOS 10.12 and older (via truststore). ([#12901](https://github.com/pypa/pip/issues/12901) <https://github.com/pypa/pip/issues/12901>_)
Allow installing pip in editable mode in a virtual environment on Windows. ([#12666](https://github.com/pypa/pip/issues/12666) <https://github.com/pypa/pip/issues/12666>_)
Vendored Libraries
Upgrade certifi to 2024.8.30
Upgrade distlib to 0.3.9
Upgrade truststore to 0.10.0
Upgrade urllib3 to 1.26.20
24.2 (2024-07-28)
Deprecations and Removals
Deprecate pip install --editable falling back to setup.py develop
when using a setuptools version that does not support :pep:660
(setuptools v63 and older). ([#11457](https://github.com/pypa/pip/issues/11457) <https://github.com/pypa/pip/issues/11457>_)
Black is now officially tested with Python 3.13 and provides Python 3.13
mypyc-compiled wheels. (#4436) (#4449)
Black will issue an error when used with Python 3.12.5, due to an upstream memory
safety issue in Python 3.12.5 that can cause Black's AST safety checks to fail. Please
use Python 3.12.6 or Python 3.12.4 instead. (#4447)
Black no longer supports running with Python 3.8 (#4452)
Stable style
Fix crashes involving comments in parenthesised return types or X | Y style unions.
(#4453)
Fix skipping Jupyter cells with unknown %% magic (#4462)
Preview style
Fix type annotation spacing between * and more complex type variable tuple (i.e. def fn(*args: *tuple[*Ts, T]) -> None: pass) (#4440)
Caching
Fix bug where the cache was shared between runs with and without --unstable (#4466)
Packaging
Upgrade version of mypyc used to 1.12 beta (#4450) (#4449)
blackd now requires a newer version of aiohttp. (#4451)
Output
Added Python target version information on parse error (#4378)
Add information about Black version to internal error messages (#4457)
Black is now officially tested with Python 3.13 and provides Python 3.13
mypyc-compiled wheels. (#4436) (#4449)
Black will issue an error when used with Python 3.12.5, due to an upstream memory
safety issue in Python 3.12.5 that can cause Black's AST safety checks to fail. Please
use Python 3.12.6 or Python 3.12.4 instead. (#4447)
Black no longer supports running with Python 3.8 (#4452)
Stable style
Fix crashes involving comments in parenthesised return types or X | Y style unions.
(#4453)
Fix skipping Jupyter cells with unknown %% magic (#4462)
Preview style
Fix type annotation spacing between * and more complex type variable tuple (i.e. def fn(*args: *tuple[*Ts, T]) -> None: pass) (#4440)
Caching
Fix bug where the cache was shared between runs with and without --unstable (#4466)
Packaging
Upgrade version of mypyc used to 1.12 beta (#4450) (#4449)
blackd now requires a newer version of aiohttp. (#4451)
Output
Added Python target version information on parse error (#4378)
Add information about Black version to internal error messages (#4457)
Add Docker support and configure Dependabot for Docker updates. 0315db4
Introduce a Dockerfile for containerized environments and add a .dockerignore file to exclude unnecessary files. Also, update dependabot.yml to include daily checks for Docker image updates.
Add inputs section in GHA workflow example. 813e7f5
This change updates the Dockerfile to use the COPY instruction instead of ADD. COPY is preferred when only copying files because it is more explicit and simpler.
Add Docker support and configure Dependabot for Docker updates. 0315db4
Introduce a Dockerfile for containerized environments and add a .dockerignore file to exclude unnecessary files. Also, update dependabot.yml to include daily checks for Docker image updates.
Add inputs section in GHA workflow example. 813e7f5
This change updates the Dockerfile to use the COPY instruction instead of ADD. COPY is preferred when only copying files because it is more explicit and simpler.
Fix bad example in documentation for dependency groups - by :user:gaborbernat. (:issue:3240)
v4.23.0 (2024-10-16)
Features - 4.23.0
- Add ``NETRC`` to the list of environment variables always passed through. (:issue:`3410`)
Improved Documentation - 4.23.0
replace [tool.pyproject] and [tool.tox.pyproject] with [tool.tox] in config.rst (:issue:3411)
v4.22.0 (2024-10-15)
Features - 4.22.0
- Implement dependency group support as defined in :pep:`735` - see :ref:`dependency_groups` - by :user:`gaborbernat`. (:issue:`3408`)
v4.21.2 (2024-10-03)
Bugfixes - 4.21.2
Include tox.toml in sdist archives to fix test failures resulting from its lack.
by :user:mgorny (:issue:3389)
v4.21.1 (2024-10-02)
Bugfixes - 4.21.1
- Fix error when using ``requires`` within a TOML configuration file - by :user:`gaborbernat`. (:issue:`3386`)
- Fix error when using ``deps`` within a TOML configuration file - by :user:`gaborbernat`. (:issue:`3387`)
- Multiple fixes for the TOML configuration by :user:`gaborbernat`.:
Do not fail when there is an empty command within commands.
</tr></table>
Allowed using dict as an ordered type in setuptools.dist.check_requirements -- by :user:Avasam (#4575)
Bugfixes
Ensured methods in setuptools.modified preferably raise a consistent
distutils.errors.DistutilsError type
(except in the deprecated use case of SETUPTOOLS_USE_DISTUTILS=stdlib)
-- by :user:Avasam (#4567)
Fix the ABI tag when building a wheel using the debug build of Python 3.13 on Windows. Previously, the ABI tag was missing the "d" flag. (#4674)
Fix clashes for optional-dependencies in pyproject.toml and
extra_requires in setup.cfg/setup.py.
As per PEP 621, optional-dependencies have to be honoured and dynamic
behaviour is not allowed. (#4696)
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.
Dependabot will merge this PR once CI passes on it, as requested by @Zeitsperre.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency
- `@dependabot ignore major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
- `@dependabot ignore minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
- `@dependabot ignore ` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
- `@dependabot unignore ` will remove all of the ignore conditions of the specified dependency
- `@dependabot unignore ` will remove the ignore condition of the specified dependency and ignore conditions
Bumps the python group with 7 updates in the / directory:
24.2.0
24.3.1
24.8.0
24.10.0
0.26.1
0.28.1
4.21.0
4.23.2
1.2.2
1.2.2.post1
1.4.1
1.4.4
75.1.0
75.3.0
Updates
pip
from 24.2.0 to 24.3.1Changelog
Sourced from pip's changelog.
... (truncated)
Commits
05293b6
Bump for release6a5db8b
Merge pull request #13047 from sbidoul/fix-130467be54ce
Don't fail when the same req file is included more than once4f6aeb1
Merge pull request #13044 from sbidoul/release/24.3e1b1d51
Bump for developmentcdba22f
Bump for release27f8374
Update AUTHORS.txtc79d019
Merge pull request #13033 from sbidoul/vendoring-24.3-sbi3ca8921
Merge pull request #13041 from sethmlarson/truststore-0.10.00cc7375
Upgrade vendored truststore to 0.10.0Updates
black[jupyter]
from 24.8.0 to 24.10.0Release notes
Sourced from black[jupyter]'s releases.
Changelog
Sourced from black[jupyter]'s changelog.
Commits
1b2427a
Prepare release 24.10.0 (#4471)a22b1eb
Add mypyc 3.13 wheel build (#4449)b7d0e72
Bump AndreMiras/coveralls-python-action from 65c1672f0b8a201702d86c81b79187df...f1a2f92
Include --unstable in cache key (#4466)8d9d18c
Fix skipping Jupyter cells with unknown %% magic (#4462)bbfdba3
Fix docs CI: use venv for uv to fix 'failed to create directory' (#4460)8fb2add
Use builtin generics (#4458)2a45cec
Fix crashes with comments in parentheses (#4453)b4d6d86
Drop Python 3.8 support (#4452)ac018c1
Require newer aiohttp for blackd (#4451)Updates
bump-my-version
from 0.26.1 to 0.28.1Release notes
Sourced from bump-my-version's releases.
... (truncated)
Changelog
Sourced from bump-my-version's changelog.
... (truncated)
Commits
1984ca3
Version updated from 0.28.0 to 0.28.1b719663
Merge pull request #246 from callowayproject/pre-commit-ci-update-config4c896a2
Merge pull request #251 from tvoirand/fix-cli-helpcf65ec2
Fix format arg help text for show command9fb0347
[pre-commit.ci] pre-commit autoupdateefab98d
Merge pull request #248 from ziima/skip-scm-testsf9baa28
Merge branch 'master' into skip-scm-tests09c5605
Merge pull request #247 from ziima/bumpversion-hooks-output2e68517
Skip scm tests if the command is not installed0a042aa
Output hooks scripts by defaultUpdates
tox
from 4.21.0 to 4.23.2Release notes
Sourced from tox's releases.
... (truncated)
Changelog
Sourced from tox's changelog.
... (truncated)
Commits
0447036
release 4.23.2f0799ac
Support external tox.pytest usage via "test" extra (#3422)ec88713
Fix docs link check962bc59
release 4.23.15916cc9
Fix example docs (#3421)e9cb93a
[pre-commit.ci] pre-commit autoupdate (#3418)88c1b99
Docs: adjusting EOL Python version testing remarks (#3417)7696a8e
release 4.23.0c01a023
Add NETRC to the default_pass_env list (#3410)971e7da
replace tool.pyproject and tool.tox.pyproject with tool.tox in config… (#3411)Updates
build
from 1.2.2 to 1.2.2.post1Release notes
Sourced from build's releases.
Changelog
Sourced from build's changelog.
Commits
2f66702
chore: 1.2.2.post1 (#820)0580c6d
ci: add PyPI attestations (#821)e0e911c
tests: fix under pyproject-hooks 1.2a73ecbd
pre-commit: bump repositories56b3504
pre-commit: bump repositories (#819)481ca54
pre-commit: bump repositories (#818)025836a
docs: add a missing ` in README (#817)ae37340
docs: mention conda-forge name in README (#816)f81aac0
ci: add Python 3.13 (#815)Updates
tox-gh
from 1.4.1 to 1.4.4Release notes
Sourced from tox-gh's releases.
Commits
7ebfab3
Add a simple example too (#145)3ce50e6
Simplify example (#144)415c400
Use tox.toml over tox.ini (#143)eb718c7
[pre-commit.ci] pre-commit autoupdate (#140)ab5ce1f
Bump pypa/gh-action-pypi-publish from 1.10.2 to 1.10.3 (#139)ab5469e
[pre-commit.ci] pre-commit autoupdate (#138)c761eff
[pre-commit.ci] pre-commit autoupdate (#136)8a341b4
Bump pypa/gh-action-pypi-publish from 1.10.1 to 1.10.2 (#135)Updates
setuptools
from 75.1.0 to 75.3.0Changelog
Sourced from setuptools's changelog.
... (truncated)
Commits
d8da7df
Bump version: 75.2.0 → 75.3.0a21c7fa
Fix grammar in news fragmenta9a79e7
Fix wheel ABI tag for debug Python 3.13 on Windows (#4676)0bc3248
Merge simple type annotations from typeshed (#4504)1155ca8
Fix wheel ABI tag for debug Python 3.13 on Windows1ca55c9
Workaround for clash betweenruff
inpre-commit
hook andpytest-ruff
(#...c498d16
Satisfy ruff linter - automatic fix1f92af5
Sync pre-commit-hook with version of ruff that gets automatically pulled in t...a39336b
Ruff: enable all pyflakes and perf rules (#4556)e5f16a2
bump jaraco.test to py.typed version 5.5 in test extra (#4651)Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase
.Dependabot will merge this PR once CI passes on it, as requested by @Zeitsperre.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show