Skip to content

Commit

Permalink
Update minimum python version to 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
martenlienen authored and Fizzadar committed May 25, 2024
1 parent 6114428 commit 57a9a40
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-20.04, ubuntu-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"]
include:
- os: macos-12
python-version: "3.11"
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[tool.black]
line-length = 100
target-version = ["py36"]
target-version = ["py38"]

[tool.isort]
profile = "black"
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,7 @@ def get_readme_contents():
"vagrant = pyinfra.connectors.vagrant:VagrantInventoryConnector",
],
},
python_requires=">=3.8",
install_requires=INSTALL_REQUIRES,
extras_require={
"test": TEST_REQUIRES,
Expand All @@ -144,7 +145,6 @@ def get_readme_contents():
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
Expand Down

0 comments on commit 57a9a40

Please sign in to comment.