Skip to content

Commit

Permalink
chore: Remove python 3.7 support due to EoL of python 3.7
Browse files Browse the repository at this point in the history
Github is no longer supporting building with/for python 3.7.
  • Loading branch information
georgkoester committed Dec 18, 2024
1 parent 664a810 commit 8df5ed9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
python-version: ["3.8", "3.9", "3.10", "3.11"]
poetry-version: ["1.3.1"]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
fail-fast: true
max-parallel: 1
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
python-version: ["3.8", "3.9", "3.10", "3.11"]
poetry-version: ["1.3.1"]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ redact_file = "redact.main:redact_file_entry_point"
redact_folder = "redact.main:redact_folder_entry_point"

[tool.poetry.dependencies]
python = ">= 3.7, < 3.12"
python = ">= 3.8, < 3.12"
httpx = "^0.23.0"
pydantic = "^1.9.2"
tqdm = "^4.60.0"
Expand Down

0 comments on commit 8df5ed9

Please sign in to comment.