From 59987c4ff4567d3d05adb8b5d192ed14e80843c2 Mon Sep 17 00:00:00 2001 From: "rodrigo.arenas" <31422766+rodrigo-arenas@users.noreply.github.com> Date: Thu, 20 Jul 2023 10:26:48 -0500 Subject: [PATCH 1/4] dependencies update --- dev-requirements.txt | 6 +++--- sklearn_genetic/_version.py | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) 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/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" From da7923ab284ae4351636e34926487a7463e5d0d6 Mon Sep 17 00:00:00 2001 From: "rodrigo.arenas" <31422766+rodrigo-arenas@users.noreply.github.com> Date: Thu, 20 Jul 2023 10:27:28 -0500 Subject: [PATCH 2/4] python 3.11 test --- .github/workflows/ci-tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci-tests.yml b/.github/workflows/ci-tests.yml index 8bcb577..d70d4ff 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 From 7a44232a74ea5efcdfaf27526ae8a40946a677fa Mon Sep 17 00:00:00 2001 From: "rodrigo.arenas" <31422766+rodrigo-arenas@users.noreply.github.com> Date: Thu, 20 Jul 2023 10:39:53 -0500 Subject: [PATCH 3/4] add codecov token --- .github/workflows/ci-tests.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci-tests.yml b/.github/workflows/ci-tests.yml index d70d4ff..3944f1e 100644 --- a/.github/workflows/ci-tests.yml +++ b/.github/workflows/ci-tests.yml @@ -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 From 9161a55bdcb55add3ae5785868c35a6962a27220 Mon Sep 17 00:00:00 2001 From: "rodrigo.arenas" <31422766+rodrigo-arenas@users.noreply.github.com> Date: Thu, 20 Jul 2023 10:55:13 -0500 Subject: [PATCH 4/4] add python 3.11 --- setup.py | 1 + 1 file changed, 1 insertion(+) 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/",