Skip to content

Commit 2db555a

Browse files
committed
Merge branch 'main' of github.com:sintel-dev/Zephyr into revised-api
2 parents 2a065dc + 40e6c7f commit 2db555a

File tree

6 files changed

+21
-11
lines changed

6 files changed

+21
-11
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

HISTORY.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# History
22

3+
## 0.0.4 – 2024-03-07
4+
5+
Supporting vibrations entityset and python 3.12
6+
7+
* Add python 3.12 - [Issue #23](https://github.com/signals-dev/Zephyr/issues/23) by @sarahmish
8+
* Fix doc test - [Issue #22](https://github.com/signals-dev/Zephyr/issues/22) by @sarahmish
9+
* Create vibrations entityset - [Issue #22](https://github.com/signals-dev/Zephyr/issues/22) by @sarahmish @SaraPido
10+
11+
312
## 0.0.3 - 2024-03-12
413

514
SigPro supporting python 3.9, 3.10, and 3.11

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.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.0.4.dev0
2+
current_version = 0.0.5.dev0
33
commit = True
44
tag = True
55
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\.(?P<release>[a-z]+)(?P<candidate>\d+))?

setup.py

Lines changed: 3 additions & 2 deletions
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,11 +119,11 @@
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,
125126
url='https://github.com/sintel-dev/zephyr',
126-
version='0.0.4.dev0',
127+
version='0.0.5.dev0',
127128
zip_safe=False,
128129
)

zephyr_ml/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
"""Top-level package for Zephyr."""
44

5-
__author__ = "MIT Data To AI Lab"
6-
__email__ = "[email protected]"
7-
__version__ = "0.0.4.dev0"
5+
__author__ = 'MIT Data To AI Lab'
6+
__email__ = '[email protected]'
7+
__version__ = '0.0.5.dev0'
88

99
import os
1010

0 commit comments

Comments
 (0)