Skip to content

Commit

Permalink
build!: πŸ’₯ remove support for Python 3.7 (#90)
Browse files Browse the repository at this point in the history
* ci: πŸ‘· Add Python 3.12 to the CI matrix

* build!: πŸ’₯ remove support for Pyhon 3.7

BREAKING CHANGE: Python 3.7 is no longer supported. The minimum supported version is now Python 3.8.

 - Remove official support for Python 3.7 from the package metadata.
 - Remove Python 3.7 from the CI matrix.
  • Loading branch information
zoido committed Jan 31, 2024
1 parent 38cce46 commit be67542
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pypi-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Set up Python 3.7
- name: Set up Python 3.8
uses: actions/setup-python@v5
with:
python-version: "3.7"
python-version: "3.8"

- name: Install pypa/build
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/python-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/python-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v4
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ keywords = []
license = "Apache-2.0"
name = "h2o-cloud-discovery"
readme = "README.md"
requires-python = ">=3.7"
requires-python = ">=3.8"
version = "1.1.1"

[project.urls]
Expand All @@ -39,7 +39,7 @@ packages = ["src/h2o_discovery"]

[[tool.hatch.envs.test.matrix]]
httpx = ["httpx0.16", "httpx0.21", "httpx0.22", "httpx0.23"]
python = ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
python = ["3.8", "3.9", "3.10", "3.11", "3.12"]

[tool.hatch.envs.test.overrides]
matrix.httpx.dependencies = [
Expand Down

0 comments on commit be67542

Please sign in to comment.