Skip to content

Commit

Permalink
Update readme, add py310 and py311
Browse files Browse the repository at this point in the history
  • Loading branch information
mateusz-wozny committed May 17, 2024
1 parent 4f5d47c commit 658aa67
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
python-version: [['3.8', 'py38'], ['3.9', 'py39']]
python-version: [['3.8', 'py38'], ['3.9', 'py39'], ['3.10', 'py310'], ['3.11', 'py311']]

steps:
- uses: actions/checkout@v3
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ multi-imbalance is a python package tackling the problem of multi-class imbalanc
## Requirements
Tha package has been tested under python 3.9. It relies heavily on scikit-learn and typical scientific stack (numpy, scipy, pandas etc.).
Requirements include:
* numpy>=1.23.4,
* scikit-learn>=1.1.3,
* pandas>=1.5.1,
* numpy>=1.23.4,<=1.26
* scikit-learn>=1.1.0,<=1.4
* pandas>1.5.1,<=2.2
* pytest>=7.2.0,
* imbalanced-learn>=0.9.1
* imbalanced-learn~=0.12
* IPython>=8.6.0,
* seaborn>=0.12.1,
* matplotlib>=3.6.2
* seaborn~=0.13.2,
* matplotlib>=3.6.2,<=3.9


## Installation
Expand Down
4 changes: 3 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
[tox]
minversions = 3.8.0
envlist = py38, py39, flake8
envlist = py38, py39, py310, py311, flake8
isolated_build = true

[gh-actions]
python =
3.8: py38
3.9: py39
3.10: py310
3.11: py311

[testenv]
setenv =
Expand Down

0 comments on commit 658aa67

Please sign in to comment.