Skip to content

Commit

Permalink
remove py 3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
PhilipMay committed Jul 6, 2023
1 parent f0eaea0 commit 0882772
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_deploy_doc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
# https://github.com/actions/setup-python
- uses: actions/setup-python@v4
with:
python-version: "3.7"
python-version: "3.8"

- name: Install
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pypi_upload.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
# https://github.com/actions/setup-python
- uses: actions/setup-python@v4
with:
python-version: "3.7"
python-version: "3.8"

- name: Install dependencies
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
python-version: ["3.8", "3.9", "3.10", "3.11"]

steps:
# https://github.com/actions/checkout
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/static_checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
# https://github.com/actions/setup-python
- uses: actions/setup-python@v4
with:
python-version: "3.7"
python-version: "3.8"

- name: Install
run: |
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.black]
line-length = 119
target-version = ["py37"]
target-version = ["py38"]

[tool.isort]
profile = "black"
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ def get_version():
# "Code of Conduct": source_code + "/blob/main/CODE_OF_CONDUCT.md",
},
packages=setuptools.find_packages(),
python_requires=">=3.7",
python_requires=">=3.8",
install_requires=install_requires,
extras_require=extras_require,
keywords=keywords,
Expand All @@ -101,7 +101,6 @@ def get_version():
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"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 0882772

Please sign in to comment.