Skip to content

Commit 393e7b5

Browse files
committed
Drop support for end-of-life Python versions
1 parent 27c9d5e commit 393e7b5

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ on: [push]
44

55
jobs:
66
build:
7-
runs-on: ubuntu-20.04
7+
runs-on: ubuntu-22.04
88
strategy:
99
matrix:
10-
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
10+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
1111

1212
steps:
1313
- uses: actions/checkout@v4

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ classifiers =
1717
package_dir =
1818
= src
1919
packages = find:
20-
python_requires = >= 3.6
20+
python_requires = >= 3.8
2121
2222
[options.packages.find]
2323
where = src

0 commit comments

Comments
 (0)