-
Notifications
You must be signed in to change notification settings - Fork 96
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #469 from inknos/drop-python-38
Bump release to 5.3.0 and drop python<3.8
- Loading branch information
Showing
6 changed files
with
11 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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: | ||
|
@@ -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: | ||
|
@@ -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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
@@ -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 = | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters