Skip to content

Commit

Permalink
Merge branch 'master' into update-python
Browse files Browse the repository at this point in the history
  • Loading branch information
sarahmish committed Nov 18, 2024
2 parents 39c1726 + aa8fb50 commit af8a402
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 6 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.1.dev0'
__version__ = '0.4.2.dev0'

import os

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.1.dev0
current_version = 0.4.2.dev0
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 @@ -133,6 +133,6 @@
test_suite='tests',
tests_require=tests_require,
url='https://github.com/MLBazaar/MLPrimitives',
version='0.4.1.dev0',
version='0.4.2.dev0',
zip_safe=False,
)

0 comments on commit af8a402

Please sign in to comment.