Skip to content

Commit cc70a06

Browse files
authored
Merge pull request #552 from ccordoba12/drop-py38
PR: Drop support for Python 3.8
2 parents 7987954 + 81f0beb commit cc70a06

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.github/workflows/linux-pip-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
strategy:
2727
fail-fast: false
2828
matrix:
29-
PYTHON_VERSION: ['3.8', '3.9', '3.10']
29+
PYTHON_VERSION: ['3.9', '3.12']
3030
timeout-minutes: 20
3131
steps:
3232
- name: Checkout branch

.github/workflows/linux-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
strategy:
2727
fail-fast: false
2828
matrix:
29-
PYTHON_VERSION: ['3.8', '3.9', '3.10']
29+
PYTHON_VERSION: ['3.9', '3.12']
3030
timeout-minutes: 20
3131
steps:
3232
- name: Checkout branch

.github/workflows/macos-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
strategy:
2727
fail-fast: false
2828
matrix:
29-
PYTHON_VERSION: ['3.8', '3.9', '3.10']
29+
PYTHON_VERSION: ['3.9', '3.12']
3030
timeout-minutes: 25
3131
steps:
3232
- name: Checkout branch

.github/workflows/windows-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
strategy:
2727
fail-fast: false
2828
matrix:
29-
PYTHON_VERSION: ['3.8', '3.9', '3.10']
29+
PYTHON_VERSION: ['3.9', '3.12']
3030
timeout-minutes: 25
3131
steps:
3232
- name: Checkout branch

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ def get_version(module='spyder_kernels'):
8787
install_requires=REQUIREMENTS,
8888
extras_require={'test': TEST_REQUIREMENTS},
8989
include_package_data=True,
90-
python_requires='>=3.8',
90+
python_requires='>=3.9',
9191
classifiers=[
9292
'Development Status :: 5 - Production/Stable',
9393
'Framework :: Jupyter',

0 commit comments

Comments
 (0)