Skip to content

Commit

Permalink
Merge pull request #469 from inknos/drop-python-38
Browse files Browse the repository at this point in the history
Bump release to 5.3.0 and drop python<3.8
  • Loading branch information
openshift-merge-bot[bot] authored Nov 25, 2024
2 parents 4c1490f + 7e64997 commit d4668d5
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 13 deletions.
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ DESTDIR ?=
EPOCH_TEST_COMMIT ?= $(shell git merge-base $${DEST_BRANCH:-main} HEAD)
HEAD ?= HEAD

export PODMAN_VERSION ?= "5.2.0"
export PODMAN_VERSION ?= "5.3.0"

.PHONY: podman
podman:
Expand All @@ -24,7 +24,7 @@ lint: tox
.PHONY: tests
tests: tox
# see tox.ini for environment variable settings
$(PYTHON) -m tox -e coverage,py36,py38,py39,py310,py311
$(PYTHON) -m tox -e coverage,py39,py310,py311,py312,py313

.PHONY: unittest
unittest:
Expand All @@ -39,9 +39,9 @@ integration:
.PHONY: tox
tox:
ifeq (, $(shell which dnf))
brew install python@3.8 python@3.9 python@3.10 python@3.11
brew install python@3.9 python@3.10 python@3.11 python@3.12 [email protected]
else
-dnf install -y python3 python3.6 python3.8 python3.9
-dnf install -y python3 python3.9 python3.10 python3.11 python3.12 python3.13
endif
# ensure tox is available. It will take care of other testing requirements
$(PYTHON) -m pip install --user tox
Expand Down
2 changes: 1 addition & 1 deletion podman/tests/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
# Do not auto-update these from version.py,
# as test code should be changed to reflect changes in Podman API versions
BASE_SOCK = "unix:///run/api.sock"
LIBPOD_URL = "http://%2Frun%2Fapi.sock/v5.2.0/libpod"
LIBPOD_URL = "http://%2Frun%2Fapi.sock/v5.3.0/libpod"
COMPATIBLE_URL = "http://%2Frun%2Fapi.sock/v1.40"
2 changes: 1 addition & 1 deletion podman/version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Version of PodmanPy."""

__version__ = "5.2.0"
__version__ = "5.3.0"
__compatible_version__ = "1.40"
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
line-length = 100
skip-string-normalization = true
preview = true
target-version = ["py36"]
target-version = ["py39"]
include = '\.pyi?$'
exclude = '''
/(
Expand Down
8 changes: 3 additions & 5 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = podman
version = 5.2.0
version = 5.3.0
author = Brent Baude, Jhon Honce, Urvashi Mohnani, Nicola Sella
author_email = [email protected]
description = Bindings for Podman RESTful API
Expand All @@ -19,19 +19,17 @@ classifiers =
License :: OSI Approved :: Apache Software License
Operating System :: OS Independent
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: 3.13
Topic :: Software Development :: Libraries :: Python Modules
keywords = podman, libpod

[options]
include_package_data = True
python_requires = >=3.6
python_requires = >=3.9
test_suite =
# Any changes should be copied into pyproject.toml
install_requires =
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
minversion = 3.2.0
envlist = pylint,coverage,py36,py38,py39,py310,py311,py312
envlist = pylint,coverage,py39,py310,py311,py312,py313
ignore_basepython_conflict = true

[testenv]
Expand Down

0 comments on commit d4668d5

Please sign in to comment.