Skip to content

Commit 63b546c

Browse files
authored
feat!: Drop Python 3.8 support (#249)
1 parent 770680b commit 63b546c

File tree

3 files changed

+2
-142
lines changed

3 files changed

+2
-142
lines changed

.github/workflows/pull-request.yml

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
strategy:
1818
max-parallel: 4
1919
matrix:
20-
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
20+
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
2121

2222
steps:
2323
- name: Cloning repo
@@ -31,17 +31,10 @@ jobs:
3131
with:
3232
python-version: ${{ matrix.python-version }}
3333
- name: Install Dependencies
34-
if: ${{ matrix.python-version != '3.8' }}
3534
run: |
3635
python -m pip install --upgrade pip
3736
pip install -r requirements.txt -r requirements-dev.txt
3837
39-
- name: Install Dependencies
40-
if: ${{ matrix.python-version == '3.8' }}
41-
run: |
42-
python -m pip install --upgrade pip
43-
pip install -r requirements.txt -r requirements-dev-3.8.txt
44-
4538
- name: Check Formatting
4639
run: black --check .
4740

requirements-dev-3.8.txt

Lines changed: 0 additions & 133 deletions
This file was deleted.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@
2121
classifiers=[
2222
"License :: OSI Approved :: BSD License",
2323
"Programming Language :: Python :: 3",
24-
"Programming Language :: Python :: 3.8",
2524
"Programming Language :: Python :: 3.9",
2625
"Programming Language :: Python :: 3.10",
2726
"Programming Language :: Python :: 3.11",
2827
"Programming Language :: Python :: 3.12",
28+
"Programming Language :: Python :: 3.13",
2929
],
3030
)

0 commit comments

Comments
 (0)