We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2a065dc + 40e6c7f commit 2db555aCopy full SHA for 2db555a
.github/workflows/tests.yml
@@ -28,7 +28,7 @@ jobs:
28
runs-on: ${{ matrix.os }}
29
strategy:
30
matrix:
31
- python-version: ["3.8", "3.9", "3.10", "3.11"]
+ python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
32
os: [ubuntu-latest, macos-latest]
33
steps:
34
- uses: actions/checkout@v1
@@ -45,7 +45,7 @@ jobs:
45
46
47
48
49
os: [ubuntu-latest, macos-latest, windows-latest]
50
51
@@ -62,7 +62,7 @@ jobs:
62
63
64
65
66
67
68
@@ -73,4 +73,4 @@ jobs:
73
- name: Install package and dependencies
74
run: pip install invoke .[test]
75
- name: make test-tutorials
76
- run: make test-tutorials
+ run: make test-tutorials
HISTORY.md
@@ -1,5 +1,14 @@
1
# History
2
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
12
## 0.0.3 - 2024-03-12
13
14
SigPro supporting python 3.9, 3.10, and 3.11
README.md
@@ -58,7 +58,7 @@ to wind farm data.
58
59
## Requirements
60
61
-**Zephyr** has been developed and runs on Python 3.6 and 3.7.
+**Zephyr** has been developed and runs on Python 3.8, 3.9, 3.10, 3.11 and 3.12.
Also, although it is not strictly required, the usage of a [virtualenv](
https://virtualenv.pypa.io/en/latest/) is highly recommended in order to avoid interfering
setup.cfg
@@ -1,5 +1,5 @@
[bumpversion]
-current_version = 0.0.4.dev0
+current_version = 0.0.5.dev0
commit = True
tag = True
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\.(?P<release>[a-z]+)(?P<candidate>\d+))?
setup.py
@@ -98,6 +98,7 @@
98
'Programming Language :: Python :: 3.9',
99
'Programming Language :: Python :: 3.10',
100
'Programming Language :: Python :: 3.11',
101
+ 'Programming Language :: Python :: 3.12',
102
],
103
description='Prediction engineering methods for Draco.',
104
entry_points={
@@ -118,11 +119,11 @@
118
119
keywords='zephyr Draco Prediction Engineering',
120
name='zephyr-ml',
121
packages=find_packages(include=['zephyr_ml', 'zephyr_ml.*']),
- python_requires='>=3.8,<3.12',
122
+ python_requires='>=3.8,<3.13',
123
setup_requires=setup_requires,
124
test_suite='tests',
125
tests_require=tests_require,
126
url='https://github.com/sintel-dev/zephyr',
- version='0.0.4.dev0',
127
+ version='0.0.5.dev0',
128
zip_safe=False,
129
)
zephyr_ml/__init__.py
@@ -2,9 +2,9 @@
"""Top-level package for Zephyr."""
-__author__ = "MIT Data To AI Lab"
-__email__ = "[email protected]"
-__version__ = "0.0.4.dev0"
+__author__ = 'MIT Data To AI Lab'
+__email__ = '[email protected]'
+__version__ = '0.0.5.dev0'
import os
0 commit comments