Skip to content

Commit 73466de

Browse files
committed
Bump packaging in tests to 23.2
1 parent 569fd7b commit 73466de

File tree

6 files changed

+6
-17
lines changed

6 files changed

+6
-17
lines changed

newsfragments/xxxx.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

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ testing-integration =
8585
jaraco.envs>=2.2
8686
build[virtualenv]>=1.0.3
8787
filelock>=3.4.0
88-
packaging>=23.1 # TODO: update once packaging 23.2 is available
88+
packaging>=23.2
8989

9090
docs =
9191
# 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

+1-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@
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
5+
packaging >= 23.2
76
setenv =
87
PYTHONWARNDEFAULTENCODING = 1
98
SETUPTOOLS_ENFORCE_DEPRECATION = {env:SETUPTOOLS_ENFORCE_DEPRECATION:0}

0 commit comments

Comments
 (0)