Skip to content

Commit a9e7b72

Browse files
authored
Bump test dependency on packaging to 23.2 (#4231)
2 parents 569fd7b + 86a2899 commit a9e7b72

File tree

6 files changed

+6
-17
lines changed

6 files changed

+6
-17
lines changed

newsfragments/4231.misc.rst

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Bump ``packaging`` to version 23.2 in tests -- by :user:`Avasam`

setup.cfg

+2-1
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ testing =
5959
virtualenv>=13.0.0
6060
wheel
6161
pip>=19.1 # For proper file:// URLs support.
62+
packaging>=23.2
6263
jaraco.envs>=2.2
6364
pytest-xdist
6465
jaraco.path>=3.2.0
@@ -85,7 +86,7 @@ testing-integration =
8586
jaraco.envs>=2.2
8687
build[virtualenv]>=1.0.3
8788
filelock>=3.4.0
88-
packaging>=23.1 # TODO: update once packaging 23.2 is available
89+
packaging>=23.2
8990

9091
docs =
9192
# upstream

setuptools/tests/_packaging_compat.py

-9
This file was deleted.

setuptools/tests/config/test_apply_pyprojecttoml.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,7 @@
1515
import pytest
1616
from ini2toml.api import Translator
1717

18-
# TODO: replace with `from packaging.metadata import Metadata` in future versions
19-
from .._packaging_compat import Metadata
18+
from packaging.metadata import Metadata
2019

2120
import setuptools # noqa ensure monkey patch to metadata
2221
from setuptools.dist import Distribution

setuptools/tests/test_core_metadata.py

+2-3
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,7 @@
55

66
import pytest
77

8-
# TODO: replace with `from packaging.metadata import Metadata` in future versions:
9-
from ._packaging_compat import Metadata
8+
from packaging.metadata import Metadata
109

1110
from setuptools import sic, _reqs
1211
from setuptools.dist import Distribution
@@ -312,7 +311,7 @@ def test_parity_with_metadata_from_pypa_wheel(tmp_path):
312311
# Example with complex requirement definition
313312
python_requires=">=3.8",
314313
install_requires="""
315-
packaging==23.0
314+
packaging==23.2
316315
ordered-set==3.1.1
317316
more-itertools==8.8.0; extra == "other"
318317
jaraco.text==3.7.0

tox.ini

-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
description = perform primary checks (tests, style, types, coverage)
33
deps =
44
# Ideally all the dependencies should be set as "extras"
5-
packaging @ git+https://github.com/pypa/packaging@7e68d82
6-
# ^-- use dev version while we wait for the new release
75
setenv =
86
PYTHONWARNDEFAULTENCODING = 1
97
SETUPTOOLS_ENFORCE_DEPRECATION = {env:SETUPTOOLS_ENFORCE_DEPRECATION:0}

0 commit comments

Comments
 (0)