Skip to content

Commit a4faead

Browse files
committed
CI: Update used python
1 parent db5c874 commit a4faead

File tree

3 files changed

+2
-13
lines changed

3 files changed

+2
-13
lines changed

.github/workflows/ci-lint.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
strategy:
2626
matrix:
2727
python:
28-
- '3.8'
28+
- '3.13'
2929
arch:
3030
- 'x64'
3131
steps:
@@ -40,5 +40,3 @@ jobs:
4040
run: pip install -r tests/requirements.txt
4141
- name: Run black
4242
run: python -m black --check .
43-
- name: Run flake8
44-
run: python -m flake8

.github/workflows/deploy-gh-pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Set up Python
2121
uses: actions/setup-python@v5
2222
with:
23-
python-version: '3.8'
23+
python-version: '3.13'
2424
- name: Install MkDocs
2525
run: pip install -r docs/requirements.txt
2626
- name: Run MkDocs

tests/requirements.txt

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1 @@
1-
mccabe == 0.6.1 ; python_version == '3.3'
2-
pycodestyle == 2.3.1 ; python_version == '3.3'
3-
pyflakes == 1.6.0 ; python_version == '3.3'
4-
flake8 == 3.5.0 ; python_version == '3.3'
5-
mccabe == 0.6.1 ; python_version >= '3.8'
6-
pycodestyle == 2.8.0 ; python_version >= '3.8'
7-
pyflakes == 2.4.0 ; python_version >= '3.8'
8-
flake8 == 4.0.1 ; python_version >= '3.8'
9-
click == 8.0.2 ; python_version >= '3.8'
101
black == 25.1.0 ; python_version >= '3.8'

0 commit comments

Comments
 (0)