Bump min python to 3.9 (#265)

This commit is contained in:
Jesse Hills 2022-09-30 10:57:41 +13:00 committed by GitHub
parent c5779b3e17
commit a354f9b41c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 4 deletions

View File

@ -36,7 +36,7 @@ jobs:
uses: actions/setup-python@v4
id: python
with:
python-version: '3.7'
python-version: '3.9'
- name: Get pip cache dir
id: pip-cache

View File

@ -1,7 +1,6 @@
[mypy]
python_version = 3.7
python_version = 3.9
show_error_codes = true
strict = true
warn_unreachable = true

View File

@ -45,6 +45,6 @@ setup(
include_package_data=True,
zip_safe=False,
install_requires=REQUIRES,
python_requires=">=3.7",
python_requires=">=3.9",
test_suite="tests",
)