Skip to content

Commit af8a402

Browse files
committed
Merge branch 'master' into update-python
2 parents 39c1726 + aa8fb50 commit af8a402

File tree

5 files changed

+11
-6
lines changed

5 files changed

+11
-6
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
python-version: ${{ matrix.python-version }}
2222
- name: Install package
2323
run: |
24-
pip install --upgrade pip setuptools wheel
24+
pip install --upgrade "pip<=24.1" setuptools wheel
2525
pip install .[dev]
2626
- name: make test-devel
2727
run: make test-devel

HISTORY.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,17 @@
11
# History
22

3+
## 0.4.1 - 2024-11-15
4+
5+
### Primitive Improvements
6+
7+
* SimpleImputer primitive update – [Issue #280](https://github.com/MLBazaar/MLPrimitives/issues/280) by @sarahmish
8+
39
## 0.4.0 - 2024-03-22
410

511
### General Imporvements
612

713
* Upgrade python versions 3.9, 3.10, and 3.11 - [Issue #279](https://github.com/MLBazaar/MLPrimitives/issues/279) by @sarahmish
8-
* Adapt to statsmodels.tsa.arima_model.ARIMA deprecation
9-
- [Issue #253](https://github.com/MLBazaar/MLPrimitives/issues/253) by @sarahmish
14+
* Adapt to statsmodels.tsa.arima_model.ARIMA deprecation - [Issue #253](https://github.com/MLBazaar/MLPrimitives/issues/253) by @sarahmish
1015

1116
## 0.3.5 - 2023-04-14
1217

mlprimitives/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
__author__ = 'MIT Data To AI Lab'
66
__email__ = '[email protected]'
7-
__version__ = '0.4.1.dev0'
7+
__version__ = '0.4.2.dev0'
88

99
import os
1010

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.4.1.dev0
2+
current_version = 0.4.2.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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,6 @@
133133
test_suite='tests',
134134
tests_require=tests_require,
135135
url='https://github.com/MLBazaar/MLPrimitives',
136-
version='0.4.1.dev0',
136+
version='0.4.2.dev0',
137137
zip_safe=False,
138138
)

0 commit comments

Comments
 (0)