Skip to content

Commit 9c1342b

Browse files
authored
add python 3.12 (#23)
1 parent 3aa5475 commit 9c1342b

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

.github/workflows/tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
runs-on: ${{ matrix.os }}
2929
strategy:
3030
matrix:
31-
python-version: ["3.8", "3.9", "3.10", "3.11"]
31+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
3232
os: [ubuntu-latest, macos-latest]
3333
steps:
3434
- uses: actions/checkout@v1
@@ -45,7 +45,7 @@ jobs:
4545
runs-on: ${{ matrix.os }}
4646
strategy:
4747
matrix:
48-
python-version: ["3.8", "3.9", "3.10", "3.11"]
48+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
4949
os: [ubuntu-latest, macos-latest, windows-latest]
5050
steps:
5151
- uses: actions/checkout@v1
@@ -62,7 +62,7 @@ jobs:
6262
runs-on: ${{ matrix.os }}
6363
strategy:
6464
matrix:
65-
python-version: ["3.8", "3.9", "3.10", "3.11"]
65+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
6666
os: [ubuntu-latest, macos-latest, windows-latest]
6767
steps:
6868
- uses: actions/checkout@v1
@@ -73,4 +73,4 @@ jobs:
7373
- name: Install package and dependencies
7474
run: pip install invoke .[test]
7575
- name: make test-tutorials
76-
run: make test-tutorials
76+
run: make test-tutorials

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ to wind farm data.
5858

5959
## Requirements
6060

61-
**Zephyr** has been developed and runs on Python 3.6 and 3.7.
61+
**Zephyr** has been developed and runs on Python 3.8, 3.9, 3.10, 3.11 and 3.12.
6262

6363
Also, although it is not strictly required, the usage of a [virtualenv](
6464
https://virtualenv.pypa.io/en/latest/) is highly recommended in order to avoid interfering

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,7 @@
9898
'Programming Language :: Python :: 3.9',
9999
'Programming Language :: Python :: 3.10',
100100
'Programming Language :: Python :: 3.11',
101+
'Programming Language :: Python :: 3.12',
101102
],
102103
description='Prediction engineering methods for Draco.',
103104
entry_points={
@@ -118,7 +119,7 @@
118119
keywords='zephyr Draco Prediction Engineering',
119120
name='zephyr-ml',
120121
packages=find_packages(include=['zephyr_ml', 'zephyr_ml.*']),
121-
python_requires='>=3.8,<3.12',
122+
python_requires='>=3.8,<3.13',
122123
setup_requires=setup_requires,
123124
test_suite='tests',
124125
tests_require=tests_require,

0 commit comments

Comments
 (0)