Skip to content

Commit fda4ac9

Browse files
committed
update python
1 parent 1658ee0 commit fda4ac9

File tree

4 files changed

+15
-12
lines changed

4 files changed

+15
-12
lines changed

.github/workflows/tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
runs-on: ${{ matrix.os }}
3333
strategy:
3434
matrix:
35-
python-version: [3.6, 3.7, 3.8]
35+
python-version: ['3.8', '3.9', '3.10', '3.11']
3636
os: [ubuntu-20.04, macos-latest]
3737
steps:
3838
- uses: actions/checkout@v1
@@ -53,7 +53,7 @@ jobs:
5353
runs-on: ${{ matrix.os }}
5454
strategy:
5555
matrix:
56-
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10', '3.11']
56+
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
5757
os: [ubuntu-20.04, macos-latest]
5858
steps:
5959
- uses: actions/checkout@v1
@@ -70,7 +70,7 @@ jobs:
7070
runs-on: ${{ matrix.os }}
7171
strategy:
7272
matrix:
73-
python-version: [3.6, 3.7, 3.8]
73+
python-version: ['3.8', '3.9', '3.10', '3.11']
7474
os: [ubuntu-20.04, macos-latest]
7575
steps:
7676
- uses: actions/checkout@v1
@@ -91,7 +91,7 @@ jobs:
9191
runs-on: ${{ matrix.os }}
9292
strategy:
9393
matrix:
94-
python-version: [3.6, 3.7, 3.8]
94+
python-version: ['3.8', '3.9', '3.10', '3.11']
9595
os: [ubuntu-20.04]
9696
steps:
9797
- uses: actions/checkout@v1

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, 3.8, 3.9, and 3.10](https://www.python.org/downloads/)
53+
**MLBlocks** has been developed and tested on [Python 3.6, 3.7, 3.8, 3.9, 3.10, 3.11, 3.12, 3.13](https://www.python.org/downloads/)
5454

5555
## Install with `pip`
5656

setup.py

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414

1515
install_requires = [
1616
'graphviz>=0.9,<1',
17-
'numpy>=1.17.1,<2',
18-
'psutil>=5,<6',
17+
'numpy>=1.17.1,<3',
18+
'psutil>=5,<7',
1919
]
2020

2121

@@ -99,6 +99,9 @@
9999
'Programming Language :: Python :: 3.9',
100100
'Programming Language :: Python :: 3.10',
101101
'Programming Language :: Python :: 3.11',
102+
'Programming Language :: Python :: 3.12',
103+
'Programming Language :: Python :: 3.13',
104+
102105
],
103106
description='Pipelines and primitives for machine learning and data science.',
104107
extras_require={
@@ -116,7 +119,7 @@
116119
long_description_content_type='text/markdown',
117120
name='mlblocks',
118121
packages=find_packages(include=['mlblocks', 'mlblocks.*']),
119-
python_requires='>=3.6,<3.12',
122+
python_requires='>=3.6,<3.14',
120123
setup_requires=setup_requires,
121124
test_suite='tests',
122125
tests_require=tests_require,

tox.ini

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ envlist = py3{6,7,8,9,10,11}, test-devel
33

44
[travis]
55
python =
6-
3.11: py11
7-
3.10: py10
6+
3.13: py313
7+
3.12: py312
8+
3.11: py311
9+
3.10: py310
810
3.9: py39
911
3.8: py38, test-devel
10-
3.7: py37
11-
3.6: py36
1212

1313
[testenv]
1414
passenv = CI TRAVIS TRAVIS_*

0 commit comments

Comments
 (0)