Skip to content

Commit bd56f7e

Browse files
committed
dropped py3.8 and py3.9
1 parent 47c1816 commit bd56f7e

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- name: Set up Python
1414
uses: actions/setup-python@v5
1515
with:
16-
python-version: 3.8
16+
python-version: '3.12'
1717
- name: Install Flit
1818
run: pip install flit
1919
- name: Install Dependencies

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- name: Set up Python
1515
uses: actions/setup-python@v5
1616
with:
17-
python-version: 3.8
17+
python-version: '3.12'
1818
- name: Install Flit
1919
run: pip install flit
2020
- name: Install Dependencies

.github/workflows/test_full.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
strategy:
1212
matrix:
13-
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
13+
python-version: ['3.10', '3.11', '3.12', '3.13']
1414

1515
steps:
1616
- uses: actions/checkout@v4
@@ -32,7 +32,7 @@ jobs:
3232
- name: Set up Python
3333
uses: actions/setup-python@v5
3434
with:
35-
python-version: 3.8
35+
python-version: '3.12'
3636
- name: Install Flit
3737
run: pip install flit
3838
- name: Install Dependencies

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ help:
55
@fgrep -h "##" $(MAKEFILE_LIST) | fgrep -v fgrep | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
66

77
clean: ## Removing cached python compiled files
8-
find . -name \*pyc | xargs rm -fv
9-
find . -name \*pyo | xargs rm -fv
10-
find . -name \*~ | xargs rm -fv
8+
find . -name "*.pyc" -type f -delete
9+
find . -name "*.pyo" -type f -delete
10+
find . -name "*~" -type f -delete
1111
find . -name __pycache__ | xargs rm -rfv
1212
find . -name .ruff_cache | xargs rm -rfv
1313

requirements-tests.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1+
anyio[trio] >= 3.2.1
12
autoflake
3+
httpx
4+
mypy == 1.15.0
25
pytest >= 7.1.3,< 9.0.0
36
pytest-asyncio
47
pytest-cov >= 2.12.0,< 7.0.0
5-
ruff ==0.9.9
8+
ruff ==0.13.3
69
types-python-dateutil
710
types-pytz
8-
mypy == 1.15.0
9-
anyio[trio] >= 3.2.1
10-
httpx

0 commit comments

Comments
 (0)