Skip to content

Commit c576d5c

Browse files
committed
Drop 3.8 and add 3.12
1 parent d756626 commit c576d5c

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ body:
2727
attributes:
2828
label: Python Version
2929
description: Version of Python interpreter
30-
placeholder: 3.8.5, 3.9, 3.10, etc.
30+
placeholder: 3.9, 3.10, 3.11, etc.
3131
validations:
3232
required: true
3333
- type: input

.github/workflows/python-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616
strategy:
1717
matrix:
18-
python-version: ['3.8', '3.9', '3.10', '3.11']
18+
python-version: ['3.9', '3.10', '3.11', '3.12']
1919
numpy_version: ['>=1.22.0', '==1.20.*']
2020
exclude:
2121
- python-version: '3.10'

.github/workflows/releases.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- uses: actions/setup-python@v4.7.1
2020
name: Install Python
2121
with:
22-
python-version: '3.8'
22+
python-version: '3.9'
2323

2424
- name: Install PyBuild
2525
run: |

.github/workflows/windows-testing.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
strategy:
1717
fail-fast: True
1818
matrix:
19-
python-version: ['3.8', '3.9', '3.10', '3.11']
19+
python-version: ['3.9', '3.10', '3.11', '3.12']
2020
steps:
2121
- uses: actions/checkout@v4
2222
with:

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ readme = { file = "README.md", content-type = "text/markdown" }
1010
maintainers = [
1111
{ name = "Alistair Miles", email = "alimanfoo@googlemail.com" }
1212
]
13-
requires-python = ">=3.8"
13+
requires-python = ">=3.9"
1414
dependencies = [
1515
'asciitree',
1616
'numpy>=1.20,!=1.21.0',
@@ -30,10 +30,10 @@ classifiers = [
3030
'Topic :: Software Development :: Libraries :: Python Modules',
3131
'Operating System :: Unix',
3232
'Programming Language :: Python :: 3',
33-
'Programming Language :: Python :: 3.8',
3433
'Programming Language :: Python :: 3.9',
3534
'Programming Language :: Python :: 3.10',
3635
'Programming Language :: Python :: 3.11',
36+
'Programming Language :: Python :: 3.12',
3737
]
3838
license = { text = "MIT" }
3939

@@ -119,7 +119,7 @@ exclude = '''
119119
'''
120120

121121
[tool.mypy]
122-
python_version = "3.8"
122+
python_version = "3.9"
123123
ignore_missing_imports = true
124124
follow_imports = "silent"
125125

0 commit comments

Comments
 (0)