Skip to content

Commit 0c88af2

Browse files
committed
[nabla-c0d3#616] Remove support for Python 3.7
1 parent 5ad5ff8 commit 0c88af2

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

.github/workflows/run_tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
strategy:
1515
matrix:
16-
python-version: [3.7, 3.8, 3.9, "3.10", "3.11"]
16+
python-version: [3.8, 3.9, "3.10", "3.11"]
1717

1818
steps:
1919
- uses: actions/checkout@v2
@@ -34,7 +34,7 @@ jobs:
3434

3535
- name: Run linters
3636
# Only do linting once
37-
if: matrix.python-version == 3.7
37+
if: matrix.python-version == 3.8
3838
run: python -m invoke lint
3939

4040
- name: Run tests

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ exclude = .venv, .venvln, .venv311
66
max-line-length = 120
77

88
[mypy]
9-
python_version = 3.7
9+
python_version = 3.8
1010
plugins = pydantic.mypy
1111
ignore_missing_imports = True
1212
strict_optional = True

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ def get_include_files() -> List[Tuple[str, str]]:
6262
author=project_info["__author__"],
6363
author_email=project_info["__author_email__"],
6464
license=project_info["__license__"],
65-
python_requires=">=3.7",
65+
python_requires=">=3.8",
6666
# Pypi metadata
6767
long_description=get_long_description(),
6868
long_description_content_type="text/markdown",
@@ -72,7 +72,6 @@ def get_include_files() -> List[Tuple[str, str]]:
7272
"Intended Audience :: System Administrators",
7373
"Natural Language :: French",
7474
"License :: OSI Approved :: GNU Affero General Public License v3",
75-
"Programming Language :: Python :: 3.7",
7675
"Programming Language :: Python :: 3.8",
7776
"Programming Language :: Python :: 3.9",
7877
"Programming Language :: Python :: 3.10",

0 commit comments

Comments
 (0)