Skip to content

Commit 77c986d

Browse files
committed
Set minimum python version to 3.8
1 parent 05878b5 commit 77c986d

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/python-package-tox.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# This workflow will install tox and use it to run tests.
22
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
33

4-
name: Python package
4+
name: Test
55

66
on:
77
push:
@@ -12,10 +12,10 @@ jobs:
1212

1313
strategy:
1414
matrix:
15-
python: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14", "3.14t"]
15+
python: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14", "3.14t"]
1616
fail-fast: false
1717

18-
runs-on: ${{ matrix.python <= '3.6' && 'ubuntu-20.04' || 'ubuntu-22.04' }}
18+
runs-on: ${{ matrix.python < '3.9' && 'ubuntu-24.04' || 'ubuntu-24.04' }}
1919

2020
name: Test on python ${{ matrix.python }}
2121
steps:

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,5 +48,5 @@
4848
author_email="kylebarbary@gmail.com",
4949
ext_modules=extensions,
5050
install_requires=["numpy>=1.13.3"],
51-
python_requires=">=3.6",
51+
python_requires=">=3.8",
5252
)

0 commit comments

Comments
 (0)