Skip to content

Commit aaecdb3

Browse files
committed
make release-tag: Merge branch 'master' into stable
2 parents 299bee4 + 741e451 commit aaecdb3

File tree

6 files changed

+11
-10
lines changed

6 files changed

+11
-10
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.0'
7+
__version__ = '0.4.1.dev1'
88

99
import os
1010

mlprimitives/primitives/sklearn.impute.SimpleImputer.json

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,6 @@
4545
"type": "str, int or float",
4646
"default": null
4747
},
48-
"verbose": {
49-
"type": "bool",
50-
"default": false
51-
},
5248
"copy": {
5349
"type": "bool",
5450
"default": true

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.0
2+
current_version = 0.4.1.dev1
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
@@ -132,6 +132,6 @@
132132
test_suite='tests',
133133
tests_require=tests_require,
134134
url='https://github.com/MLBazaar/MLPrimitives',
135-
version='0.4.0',
135+
version='0.4.1.dev1',
136136
zip_safe=False,
137137
)

0 commit comments

Comments
 (0)