Skip to content

Commit 599f56d

Browse files
committed
change required Python to 3.11
1 parent 0a501ab commit 599f56d

File tree

3 files changed

+7
-8
lines changed

3 files changed

+7
-8
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
strategy:
1717
fail-fast: false
1818
matrix:
19-
python-version: [3.9]
19+
python-version: [3.13]
2020
steps:
2121
- uses: actions/checkout@v2
2222
- name: Set up Python ${{matrix.python-version}}
@@ -38,7 +38,7 @@ jobs:
3838
strategy:
3939
fail-fast: false
4040
matrix:
41-
python-version: ['3.7', '3.8', '3.9', '3.10']
41+
python-version: ['3.11', '3.12', '3.13']
4242

4343
steps:
4444
- uses: actions/checkout@v2

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ def read_file(fname):
4949
author_email='',
5050
packages=find_packages(),
5151
install_requires= ['cocotb >= 2.0', 'python-constraint', 'pyyaml'],
52-
python_requires=">=3.8",
52+
python_requires=">=3.11",
5353
platforms='any',
5454
classifiers=[
5555
"Programming Language :: Python :: 3",

tox.ini

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py37, py38, py39, py310
2+
envlist = py311, py312, py313
33

44
[testenv]
55
passenv =
@@ -20,7 +20,6 @@ commands =
2020

2121
[gh-actions]
2222
python =
23-
3.7: py37
24-
3.8: py38
25-
3.9: py39
26-
3.10: py310
23+
3.11: py311
24+
3.12: py312
25+
3.13: py313

0 commit comments

Comments
 (0)