Skip to content

Commit dae4189

Browse files
committed
make release-tag: Merge branch 'master' into stable
2 parents 8140e3d + 1cc2551 commit dae4189

File tree

8 files changed

+20
-7
lines changed

8 files changed

+20
-7
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
runs-on: ${{ matrix.os }}
4646
strategy:
4747
matrix:
48-
python-version: [3.6, 3.7, 3.8]
48+
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10']
4949
os: [ubuntu-20.04, macos-latest]
5050
steps:
5151
- uses: actions/checkout@v1

HISTORY.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
Changelog
22
=========
33

4+
0.6.0 - 2023-04-14
5+
------------------
6+
7+
* Support python 3.9 and 3.10 - [Issue #141](https://github.com/MLBazaar/MLBlocks/issues/141) by @sarahmish
8+
49
0.5.0 - 2023-01-22
510
------------------
611

Makefile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,10 @@ install: clean-build clean-pyc ## install the package to the active Python's sit
7676
install-examples: clean-build clean-pyc ## install the package and the examples dependencies
7777
pip install .[examples]
7878

79+
.PHONY: install-unit
80+
install-unit: clean-build clean-pyc ## install the package and dependencies for unit tests
81+
pip install .[unit]
82+
7983
.PHONY: install-test
8084
install-test: clean-build clean-pyc ## install the package and test dependencies
8185
pip install .[test]

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ Features include:
5050

5151
## Requirements
5252

53-
**MLBlocks** has been developed and tested on [Python 3.6, 3.7 and 3.8](https://www.python.org/downloads/)
53+
**MLBlocks** has been developed and tested on [Python 3.6, 3.7, 3.8, 3.9, and 3.10](https://www.python.org/downloads/)
5454

5555
## Install with `pip`
5656

mlblocks/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
__copyright__ = 'Copyright (c) 2018, MIT Data To AI Lab'
2121
__email__ = '[email protected]'
2222
__license__ = 'MIT'
23-
__version__ = '0.5.0'
23+
__version__ = '0.6.0.dev0'
2424

2525
__all__ = [
2626
'MLBlock',

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.5.0
2+
current_version = 0.6.0.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: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,8 @@
9696
'Programming Language :: Python :: 3.6',
9797
'Programming Language :: Python :: 3.7',
9898
'Programming Language :: Python :: 3.8',
99+
'Programming Language :: Python :: 3.9',
100+
'Programming Language :: Python :: 3.10',
99101
],
100102
description='Pipelines and primitives for machine learning and data science.',
101103
extras_require={
@@ -113,11 +115,11 @@
113115
long_description_content_type='text/markdown',
114116
name='mlblocks',
115117
packages=find_packages(include=['mlblocks', 'mlblocks.*']),
116-
python_requires='>=3.6,<3.9',
118+
python_requires='>=3.6,<3.11',
117119
setup_requires=setup_requires,
118120
test_suite='tests',
119121
tests_require=tests_require,
120122
url='https://github.com/MLBazaar/MLBlocks',
121-
version='0.5.0',
123+
version='0.6.0.dev0',
122124
zip_safe=False,
123125
)

tox.ini

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
[tox]
2-
envlist = py3{6,7,8}, test-devel
2+
envlist = py3{6,7,8,9,10}, test-devel
33

44
[travis]
55
python =
6+
3.10: py10
7+
3.9: py39
68
3.8: py38, test-devel
79
3.7: py37
810
3.6: py36

0 commit comments

Comments
 (0)