Skip to content

Commit

Permalink
make release-tag: Merge branch 'master' into stable
Browse files Browse the repository at this point in the history
  • Loading branch information
sarahmish committed Nov 15, 2024
2 parents 299bee4 + 741e451 commit aaecdb3
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
python-version: ${{ matrix.python-version }}
- name: Install package
run: |
pip install --upgrade pip setuptools wheel
pip install --upgrade "pip<=24.1" setuptools wheel
pip install .[dev]
- name: make test-devel
run: make test-devel
Expand Down
9 changes: 7 additions & 2 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,17 @@
# History

## 0.4.1 - 2024-11-15

### Primitive Improvements

* SimpleImputer primitive update – [Issue #280](https://github.com/MLBazaar/MLPrimitives/issues/280) by @sarahmish

## 0.4.0 - 2024-03-22

### General Imporvements

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

## 0.3.5 - 2023-04-14

Expand Down
2 changes: 1 addition & 1 deletion mlprimitives/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

__author__ = 'MIT Data To AI Lab'
__email__ = '[email protected]'
__version__ = '0.4.0'
__version__ = '0.4.1.dev1'

import os

Expand Down
4 changes: 0 additions & 4 deletions mlprimitives/primitives/sklearn.impute.SimpleImputer.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,6 @@
"type": "str, int or float",
"default": null
},
"verbose": {
"type": "bool",
"default": false
},
"copy": {
"type": "bool",
"default": true
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.4.0
current_version = 0.4.1.dev1
commit = True
tag = True
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\.(?P<release>[a-z]+)(?P<candidate>\d+))?
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,6 @@
test_suite='tests',
tests_require=tests_require,
url='https://github.com/MLBazaar/MLPrimitives',
version='0.4.0',
version='0.4.1.dev1',
zip_safe=False,
)

0 comments on commit aaecdb3

Please sign in to comment.