Skip to content

Commit

Permalink
Clean up old python versions (#283)
Browse files Browse the repository at this point in the history
* update python version in workflows

* fix mypy stub
  • Loading branch information
shyamd authored Jan 11, 2025
1 parent 5b89d3e commit c3ab27e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

- uses: actions/setup-python@v3
with:
python-version: 3.7
python-version: 3.12

- name: Install dependencies
run: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ jobs:
steps:
- uses: actions/checkout@v1

- name: Set up Python 3.7
- name: Set up Python 3.12
uses: actions/setup-python@v1
with:
python-version: 3.7
python-version: 3.12

- name: Install dependencies
run: |
Expand All @@ -38,7 +38,7 @@ jobs:
max-parallel: 6
matrix:
os: [ubuntu-latest]
python-version: [3.7, 3.8, 3.9, '3.10', 3.11, 3.12]
python-version: [3.9, '3.10', 3.11, 3.12]
pandoc-version: [2.9.2, 2.14.0.3]
runs-on: ${{ matrix.os }}

Expand Down
1 change: 1 addition & 0 deletions requirements-testing.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ pytest-pretty==1.2.0
mypy==0.812;python_version<"3.9"
mypy==1.13.0;python_version>"3.8"
ruff==0.4.7
types-requests~=2.32.0

0 comments on commit c3ab27e

Please sign in to comment.