Skip to content

Commit

Permalink
chore(support): Remove compatibility with 3.7 - it's no longer supported
Browse files Browse the repository at this point in the history
  • Loading branch information
mrwilson committed Sep 23, 2023
1 parent c2061fe commit 7287f06
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 6 deletions.
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
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@
'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",
],
Expand Down

0 comments on commit 7287f06

Please sign in to comment.