Skip to content

Commit 95c8b07

Browse files
committed
Upgrade to >= Python 3.10
1 parent 3d64d6b commit 95c8b07

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/pylint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10-
python-version: ["3.8", "3.9", "3.10"]
10+
python-version: ["3.10", "3.11"]
1111
steps:
1212
- uses: actions/checkout@v3
1313
- name: Set up Python ${{ matrix.python-version }}

.github/workflows/python-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Set up Python
2323
uses: actions/setup-python@v4
2424
with:
25-
python-version: '3.x'
25+
python-version: '3.10'
2626
- name: Install dependencies
2727
run: |
2828
python -m pip install --upgrade pip

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
author='Eddy Luten',
1818
author_email='eddyluten@gmail.com',
1919
license='MIT',
20-
python_requires='>=3.0',
20+
python_requires='>=3.10',
2121
install_requires=['mkdocs'],
2222
classifiers=[
2323
'License :: OSI Approved :: MIT License',

0 commit comments

Comments
 (0)