Skip to content

Commit

Permalink
Declare compatibility with python 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
mdellweg committed Sep 17, 2024
1 parent 20485c6 commit 02c62cb
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
python: "3.12"
- image_tag: "3.28"
lower_bounds: true
python: "3.12"
python: "3.13"
- image_tag: "3.22"
python: "3.8"
- image_tag: "3.21"
Expand All @@ -54,6 +54,7 @@ jobs:
uses: "actions/setup-python@v5"
with:
python-version: "${{ matrix.python }}"
allow-prereleases: true
- name: "Install Python Test Dependencies"
run: |
if [ "${{matrix.lower_bounds}}" ]
Expand Down
1 change: 1 addition & 0 deletions CHANGES/+python3.13.misc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Declare compatibility with Python 3.13.
1 change: 1 addition & 0 deletions CHANGES/pulp-glue/+python3.13.misc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Declare compatibility with Python 3.13.
2 changes: 1 addition & 1 deletion pulp-glue/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ name = "pulp-glue"
version = "0.30.0.dev"
description = "Version agnostic glue library to talk to pulpcore's REST API."
readme = "README.md"
requires-python = ">=3.8,<3.13"
requires-python = ">=3.8,<3.14"
license = {text = "GPLv2+"}
authors = [
{name = "Pulp Team", email = "[email protected]"},
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ name = "pulp-cli"
version = "0.30.0.dev"
description = "Command line interface to talk to pulpcore's REST API."
readme = "README.md"
requires-python = ">=3.8,<3.13"
requires-python = ">=3.8,<3.14"
license = {text = "GPLv2+"}
authors = [
{name = "Pulp Team", email = "[email protected]"},
Expand Down

0 comments on commit 02c62cb

Please sign in to comment.