Skip to content

Commit 0402381

Browse files
author
Jaime Céspedes Sisniega
authored
Merge pull request #153 from IFCA/fix-add-missing-python311
Fix missing Python 3.11 version
2 parents 215b6b0 + f6cbba8 commit 0402381

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ jobs:
1212
matrix:
1313
python-version: ['3.8',
1414
'3.9',
15-
'3.10' ]
15+
'3.10',
16+
'3.11',]
1617

1718
steps:
1819
- name: Checkout

pyproject.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "frouros"
3-
version = "0.2.0"
3+
version = "0.2.1"
44
description = "A Python library for drift detection in Machine Learning problems"
55
authors = [
66
{name = "Jaime Céspedes Sisniega", email = "cespedes@ifca.unican.es"}
@@ -26,8 +26,9 @@ classifiers = [
2626
"Programming Language :: Python :: 3.8",
2727
"Programming Language :: Python :: 3.9",
2828
"Programming Language :: Python :: 3.10",
29+
"Programming Language :: Python :: 3.11",
2930
]
30-
requires-python = ">=3.8,<3.11"
31+
requires-python = ">=3.8,<3.12"
3132
dependencies = [
3233
"matplotlib>=3.6.0,<3.7",
3334
"numpy>=1.24.0,<1.25",

tox.ini

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tox]
22
minversion = 3.24.5
33
envlist =
4-
py3{8, 9, 10}
4+
py3{8, 9, 10, 11}
55
linters
66

77
[base]
@@ -15,6 +15,7 @@ python =
1515
3.8: py38
1616
3.9: py39, linters
1717
3.10: py310
18+
3.11: py311
1819

1920
[testenv]
2021
deps =

0 commit comments

Comments
 (0)