Skip to content

Commit

Permalink
test python 3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
sarahmish committed Sep 25, 2023
1 parent ec84335 commit 39f10b2
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10']
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10', '3.11']
os: [ubuntu-20.04, macos-latest]
steps:
- uses: actions/checkout@v1
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,7 @@
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
],
description='Pipelines and primitives for machine learning and data science.',
extras_require={
Expand All @@ -115,7 +116,7 @@
long_description_content_type='text/markdown',
name='mlblocks',
packages=find_packages(include=['mlblocks', 'mlblocks.*']),
python_requires='>=3.6,<3.11',
python_requires='>=3.6,<3.12',
setup_requires=setup_requires,
test_suite='tests',
tests_require=tests_require,
Expand Down
3 changes: 2 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
[tox]
envlist = py3{6,7,8,9,10}, test-devel
envlist = py3{6,7,8,9,10,11}, test-devel

[travis]
python =
3.11: py11
3.10: py10
3.9: py39
3.8: py38, test-devel
Expand Down

0 comments on commit 39f10b2

Please sign in to comment.