Skip to content

Commit

Permalink
Update Python dependencies (#13)
Browse files Browse the repository at this point in the history
* deps: Remove support for python 3.6 (EoL). Update python-poetry version; Update pytest to resolve CVE-2022-42969
  • Loading branch information
wenoptics authored Nov 9, 2023
1 parent ef5b69e commit 1c3f43a
Show file tree
Hide file tree
Showing 5 changed files with 185 additions and 260 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [ "3.6", "3.7", "3.8", "3.9", "3.10" ]
python-version: [ "3.7", "3.8", "3.9", "3.10", "3.11" ]

# The type of runner that the job will run on
runs-on: ubuntu-latest
Expand All @@ -49,6 +49,8 @@ jobs:

- name: Install Poetry
uses: snok/install-poetry@v1
with:
version: 1.5.1

- name: Run Tests
run: |
Expand Down
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,5 @@

dist/
.pytest_cache/

__pycache__/
Loading

0 comments on commit 1c3f43a

Please sign in to comment.