From 41af565cf535bde8c8f8f8e82426097c9ffc9924 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20=C4=8Cerm=C3=A1k?= Date: Tue, 28 Nov 2023 10:43:07 +0100 Subject: [PATCH] Add "official" support for Python 3.12 --- CHANGELOG.rst | 3 +++ pyproject.toml | 1 + 2 files changed, 4 insertions(+) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 52b43a1..54da14b 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -18,8 +18,11 @@ Improvements and new features: :py:attr:`~pytest_container.container.ContainerBase.extra_entrypoint_args` to support appending arguments to the container launch command +- Add support for Python 3.12 + - Add property :py:attr:`~pytest_container.inspect.PortForwarding.bind_ip` to support binding to arbitrary IP addresses. + - Fix :py:attr:`~pytest_container.inspect.PortForwarding.host_port` being ignored when picking the host port diff --git a/pyproject.toml b/pyproject.toml index ab27135..e8b5465 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -20,6 +20,7 @@ classifiers = [ "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", "Topic :: Software Development :: Quality Assurance", "Topic :: Software Development :: Testing" ]