Skip to content

Commit

Permalink
Drop support for Python 3.7
Browse files Browse the repository at this point in the history
Some upstream bugs, can't fix them.
  • Loading branch information
iamkroot committed Oct 8, 2023
1 parent c66d243 commit 38eaa31
Show file tree
Hide file tree
Showing 2 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 @@ -6,7 +6,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
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']
runs-on: ${{ matrix.os }}
steps:
#----------------------------------------------
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ include = [
]

[tool.poetry.dependencies]
python = "^3.7"
python = "^3.8"
requests = "^2.31.0"
urllib3 = "^1.26.0"
guessit = "^3.7.1"
Expand Down Expand Up @@ -54,5 +54,5 @@ reportImplicitStringConcatenation = false

[tool.black]
line-length = 88
target-version = ['py37']
target-version = ['py38']
skip-string-normalization = true

0 comments on commit 38eaa31

Please sign in to comment.