Skip to content

Commit

Permalink
Drop python 3.6 and 3.7 support
Browse files Browse the repository at this point in the history
Both of these versions dropped out of security maintenance for quite
some while now.

[noissue]
  • Loading branch information
mdellweg committed Mar 7, 2024
1 parent 623eef4 commit c1c069e
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ jobs:
pulp_api_root: "/relocated/djnd/"
- python: "3.11"
image_tag: "latest"
- python: "3.6"
- python: "3.12"
image_tag: "3.39"
- python: "3.7"
- python: "3.12"
image_tag: "3.28"
lower_bounds: true
- python: "3.8"
Expand Down
1 change: 1 addition & 0 deletions CHANGES/+python38.removal
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Dropped support for python 3.6 and 3.7.
1 change: 1 addition & 0 deletions CHANGES/pulp-glue/+python38.removal
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Dropped support for python 3.6 and 3.7.
3 changes: 2 additions & 1 deletion lower_bounds_constraints.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
click==8.0.0
packaging==20.0
PyYAML==5.3
requests==2.24.0
requests==2.24.0;python_version<"3.12"
requests==2.25.1;python_version>="3.12"
schema==0.7.5
toml==0.10.2
pygments==2.17.2
Expand Down
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.24.0.dev"
description = "Version agnostic glue library to talk to pulpcore's REST API."
readme = "README.md"
requires-python = ">=3.6"
requires-python = ">=3.8"
license = {text = "GPLv2+"}
authors = [
{name = "Pulp Team", email = "pulp-list@redhat.com"},
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ name = "pulp-cli"
version = "0.24.0.dev"
description = "Command line interface to talk to pulpcore's REST API."
readme = "README.md"
requires-python = ">=3.6"
requires-python = ">=3.8"
license = {text = "GPLv2+"}
authors = [
{name = "Pulp Team", email = "pulp-list@redhat.com"},
Expand Down Expand Up @@ -71,9 +71,9 @@ test_matrix = """
pulp_api_root: "/relocated/djnd/"
- python: "3.11"
image_tag: "latest"
- python: "3.6"
- python: "3.12"
image_tag: "3.39"
- python: "3.7"
- python: "3.12"
image_tag: "3.28"
lower_bounds: true
- python: "3.8"
Expand Down

0 comments on commit c1c069e

Please sign in to comment.