From ebf8aead694add6901c054b377a31ff6d4997873 Mon Sep 17 00:00:00 2001 From: Thibaut Durand Date: Thu, 5 Oct 2023 06:07:50 -0700 Subject: [PATCH] Update nightly package workflow (#278) --- .github/workflows/nightly-package.yaml | 20 ++++++++++---------- pyproject.toml | 2 +- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/nightly-package.yaml b/.github/workflows/nightly-package.yaml index 86db402b..f28e86b6 100644 --- a/.github/workflows/nightly-package.yaml +++ b/.github/workflows/nightly-package.yaml @@ -94,7 +94,7 @@ jobs: matrix: os: [ ubuntu-latest ] python-version: [ '3.9', '3.10', '3.11' ] - jax-version: [ 0.4.14, 0.3.25 ] + jax-version: [ 0.4.17, 0.3.25 ] steps: - name: Checkout @@ -123,7 +123,7 @@ jobs: matrix: os: [ ubuntu-latest ] python-version: [ '3.9', '3.10', '3.11' ] - numpy-version: [ 1.25.2, 1.24.3, 1.23.5, 1.22.4, 1.21.6 ] + numpy-version: [ 1.26.0, 1.25.2, 1.24.3, 1.23.5, 1.22.4, 1.21.6 ] exclude: - numpy-version: 1.21.6 python-version: 3.11 @@ -155,7 +155,7 @@ jobs: matrix: os: [ ubuntu-latest ] python-version: [ '3.9', '3.10', '3.11' ] - pandas-version: [ 2.1.0, 2.0.3, 1.5.3, 1.4.4, 1.3.5 ] + pandas-version: [ 2.1.1, 2.0.3, 1.5.3, 1.4.4, 1.3.5 ] exclude: - pandas-version: 1.4.4 python-version: 3.11 @@ -190,7 +190,7 @@ jobs: matrix: os: [ ubuntu-latest ] python-version: [ '3.9', '3.10', '3.11' ] - polars-version: [ '0.19', '0.18.15', '0.18.3' ] + polars-version: [ '0.19.7', '0.18.15' ] steps: - name: Checkout @@ -220,15 +220,15 @@ jobs: matrix: os: [ ubuntu-latest ] python-version: [ '3.9', '3.10', '3.11' ] - pytorch-version: [ 2.0.1, 1.13.1, 1.12.1, 1.11.0, 1.10.0 ] + torch-version: [ 2.1.0, 2.0.1, 1.13.1, 1.12.1, 1.11.0, 1.10.2 ] exclude: - - pytorch-version: 1.10.0 + - torch-version: 1.10.2 python-version: 3.10 - - pytorch-version: 1.10.0 + - torch-version: 1.10.2 python-version: 3.11 - - pytorch-version: 1.11.0 + - torch-version: 1.11.0 python-version: 3.11 - - pytorch-version: 1.12.1 + - torch-version: 1.12.1 python-version: 3.11 steps: @@ -242,7 +242,7 @@ jobs: - name: Install package run: | - pip install coola torch==${{ matrix.pytorch-version }} + pip install coola torch==${{ matrix.torch-version }} - name: Tests run: | diff --git a/pyproject.toml b/pyproject.toml index bac8021b..4c9be07d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "coola" -version = "0.0.24" +version = "0.0.25a0" description = "A library to check if two complex/nested objects are equal or not" readme = "README.md" authors = ["Thibaut Durand "]