Skip to content

Commit

Permalink
build!: drop python 37 (#326)
Browse files Browse the repository at this point in the history
  • Loading branch information
trim21 authored Sep 1, 2023
1 parent 0ada22a commit a82d90e
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
max-parallel: 2
matrix:
transmission: [ 'version-3.00-r8', '4.0.3' ]
python: [ "3.7", "3.8", "3.9", "3.10", "3.11" ]
python: [ "3.8", "3.9", "3.10", "3.11" ]

services:
transmission:
Expand Down
12 changes: 3 additions & 9 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 4 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ classifiers = [
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
Expand All @@ -27,7 +26,7 @@ classifiers = [
]

[tool.poetry.dependencies]
python = "^3.7"
python = "^3.8"
# dependencies
requests = "^2.23.0"
typing-extensions = "*"
Expand Down Expand Up @@ -70,7 +69,7 @@ include_trailing_comma = true
addopts = '-rav -Werror'

[tool.mypy]
python_version = "3.7"
python_version = "3.8"
disallow_untyped_defs = true
ignore_missing_imports = true
warn_return_any = false
Expand All @@ -79,7 +78,7 @@ show_error_codes = true

[tool.black]
line-length = 120
target-version = ['py37']
target-version = ['py38']


[tool.ruff]
Expand Down Expand Up @@ -152,4 +151,4 @@ ignore = [
'PGH003',
]

target-version = "py37"
target-version = "py38"

0 comments on commit a82d90e

Please sign in to comment.