diff --git a/.github/workflows/ci-tests.yml b/.github/workflows/ci-tests.yml index 8bcb577..3944f1e 100644 --- a/.github/workflows/ci-tests.yml +++ b/.github/workflows/ci-tests.yml @@ -9,7 +9,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - python-version: [ '3.8', '3.9', '3.10'] + python-version: [ '3.8', '3.9', '3.10', '3.11'] os: [ubuntu-latest, windows-latest, macOS-latest] include: - os: ubuntu-latest @@ -40,4 +40,5 @@ jobs: - name: "Upload coverage to Codecov" uses: codecov/codecov-action@v3 with: + token: ${{ secrets.CODECOV_TOKEN }} fail_ci_if_error: true diff --git a/dev-requirements.txt b/dev-requirements.txt index c4ec803..5f918a1 100644 --- a/dev-requirements.txt +++ b/dev-requirements.txt @@ -1,9 +1,9 @@ scikit-learn>=1.1.0 deap>=1.3.3 numpy>=1.19.0 -pytest==7.1.1 -codecov==2.1.11 -pytest-cov==3.0.0 +pytest==7.4.0 +codecov==2.1.13 +pytest-cov==4.1.0 twine==3.3.0 seaborn>=0.11.2 mlflow>=1.30.0 diff --git a/setup.py b/setup.py index 21b0fd3..9a438a2 100644 --- a/setup.py +++ b/setup.py @@ -29,6 +29,7 @@ "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", ], project_urls={ "Documentation": "https://sklearn-genetic-opt.readthedocs.io/en/stable/", diff --git a/sklearn_genetic/_version.py b/sklearn_genetic/_version.py index 1f4c4d4..018bfb0 100644 --- a/sklearn_genetic/_version.py +++ b/sklearn_genetic/_version.py @@ -1 +1 @@ -__version__ = "0.10.1" +__version__ = "0.10.2dev0"