Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Remove 3.7 support #55

Merged
merged 2 commits into from
Sep 23, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions .github/workflows/pre-merge-checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ jobs:
fail-fast: false
matrix:
python_version:
- '3.7'
- '3.8'
- '3.9'
- '3.10'
Expand All @@ -32,7 +31,6 @@ jobs:
pip install -r requirements.txt
- name: Check formatting
run: black --check adr_viewer
if: ${{ matrix.python_version >= 3.8 }}
- name: Run tests
run: pytest
- name: Run typecheck
Expand Down
5 changes: 2 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,5 @@ beautifulsoup4==4.12.2
Jinja2==3.1.2
pytest==7.4.2
bottle==0.12.25
mypy==1.4.1 ; python_version <= "3.7"
mypy==1.5.1 ; python_version >= "3.8"
black==23.9.0 ; python_version >= "3.8"
mypy==1.5.1
black==23.9.0
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,10 @@
'License :: OSI Approved :: MIT License',
'Topic :: Software Development',
'Topic :: Software Development :: Documentation',
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
use_scm_version=True,
setup_requires=["setuptools_scm"],
Expand Down