Skip to content

Commit

Permalink
Fixes Python 3.12 and Deprecates Python 3.7 (#142)
Browse files Browse the repository at this point in the history
* Adds dependency on setuptools and moves to a Python 3.8 minimum

* Updates to major versions of dependencies
  • Loading branch information
ChristopherHammond13 authored Feb 23, 2024
1 parent 2bb080d commit 7379110
Show file tree
Hide file tree
Showing 3 changed files with 680 additions and 1,025 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/code-quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
codequality:
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand All @@ -26,6 +26,8 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
cache: 'poetry'
- name: Install setuptools
run: pip install setuptools
- name: Install dependencies
run: poetry install
- name: Lint package source with flake8
Expand Down
Loading

0 comments on commit 7379110

Please sign in to comment.