Skip to content

Commit

Permalink
change: drop python 3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
hadialqattan committed Jan 6, 2025
1 parent 42785a0 commit efe2e73
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-20.04, windows-latest, macos-13]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.12"]
python-version: ["3.8", "3.9", "3.10", "3.12"]

steps:
- uses: actions/checkout@v4
Expand Down
6 changes: 2 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ keywords = ["formatter", "linter", "quality-assurance", "tools", "cli"]
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
Expand All @@ -25,7 +24,7 @@ packages = [{ include = "pycln" }, { include = "vendor" }]
pycln = "pycln.cli:app"

[tool.poetry.dependencies]
python = ">=3.7.0, <4"
python = ">=3.8, <4"
typer = ">=0.4.1"
pyyaml = ">=5.3.1"
pathspec = ">=0.9.0"
Expand All @@ -50,10 +49,9 @@ build-backend = "poetry.core.masonry.api"
[tool.pycln]
all = true

[mypy]
[tool.mypy]
show_error_codes = true
ignore_missing_imports = true
no_strict_optional = true

[tool.isort]
line_length = 88
Expand Down

0 comments on commit efe2e73

Please sign in to comment.