Skip to content

Commit d4668d5

Browse files
Merge pull request #469 from inknos/drop-python-38
Bump release to 5.3.0 and drop python<3.8
2 parents 4c1490f + 7e64997 commit d4668d5

File tree

6 files changed

+11
-13
lines changed

6 files changed

+11
-13
lines changed

Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ DESTDIR ?=
88
EPOCH_TEST_COMMIT ?= $(shell git merge-base $${DEST_BRANCH:-main} HEAD)
99
HEAD ?= HEAD
1010

11-
export PODMAN_VERSION ?= "5.2.0"
11+
export PODMAN_VERSION ?= "5.3.0"
1212

1313
.PHONY: podman
1414
podman:
@@ -24,7 +24,7 @@ lint: tox
2424
.PHONY: tests
2525
tests: tox
2626
# see tox.ini for environment variable settings
27-
$(PYTHON) -m tox -e coverage,py36,py38,py39,py310,py311
27+
$(PYTHON) -m tox -e coverage,py39,py310,py311,py312,py313
2828

2929
.PHONY: unittest
3030
unittest:
@@ -39,9 +39,9 @@ integration:
3939
.PHONY: tox
4040
tox:
4141
ifeq (, $(shell which dnf))
42-
brew install python@3.8 python@3.9 python@3.10 python@3.11
42+
brew install python@3.9 python@3.10 python@3.11 python@3.12 [email protected]
4343
else
44-
-dnf install -y python3 python3.6 python3.8 python3.9
44+
-dnf install -y python3 python3.9 python3.10 python3.11 python3.12 python3.13
4545
endif
4646
# ensure tox is available. It will take care of other testing requirements
4747
$(PYTHON) -m pip install --user tox

podman/tests/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
# Do not auto-update these from version.py,
44
# as test code should be changed to reflect changes in Podman API versions
55
BASE_SOCK = "unix:///run/api.sock"
6-
LIBPOD_URL = "http://%2Frun%2Fapi.sock/v5.2.0/libpod"
6+
LIBPOD_URL = "http://%2Frun%2Fapi.sock/v5.3.0/libpod"
77
COMPATIBLE_URL = "http://%2Frun%2Fapi.sock/v1.40"

podman/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
"""Version of PodmanPy."""
22

3-
__version__ = "5.2.0"
3+
__version__ = "5.3.0"
44
__compatible_version__ = "1.40"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
line-length = 100
33
skip-string-normalization = true
44
preview = true
5-
target-version = ["py36"]
5+
target-version = ["py39"]
66
include = '\.pyi?$'
77
exclude = '''
88
/(

setup.cfg

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = podman
3-
version = 5.2.0
3+
version = 5.3.0
44
author = Brent Baude, Jhon Honce, Urvashi Mohnani, Nicola Sella
55
author_email = [email protected]
66
description = Bindings for Podman RESTful API
@@ -19,19 +19,17 @@ classifiers =
1919
License :: OSI Approved :: Apache Software License
2020
Operating System :: OS Independent
2121
Programming Language :: Python :: 3 :: Only
22-
Programming Language :: Python :: 3.6
23-
Programming Language :: Python :: 3.7
24-
Programming Language :: Python :: 3.8
2522
Programming Language :: Python :: 3.9
2623
Programming Language :: Python :: 3.10
2724
Programming Language :: Python :: 3.11
2825
Programming Language :: Python :: 3.12
26+
Programming Language :: Python :: 3.13
2927
Topic :: Software Development :: Libraries :: Python Modules
3028
keywords = podman, libpod
3129

3230
[options]
3331
include_package_data = True
34-
python_requires = >=3.6
32+
python_requires = >=3.9
3533
test_suite =
3634
# Any changes should be copied into pyproject.toml
3735
install_requires =

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
minversion = 3.2.0
3-
envlist = pylint,coverage,py36,py38,py39,py310,py311,py312
3+
envlist = pylint,coverage,py39,py310,py311,py312,py313
44
ignore_basepython_conflict = true
55

66
[testenv]

0 commit comments

Comments
 (0)