Skip to content

Commit

Permalink
CI: Use at most pandas 1.5
Browse files Browse the repository at this point in the history
pandas 2.0 is not available in conda's main channel yet
  • Loading branch information
sebp committed Jun 11, 2023
1 parent 2771dd3 commit afebde3
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/tests-workflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ jobs:
config:
- py38_pandas10_numpy119_sklearn12
- py39_pandas13_numpy121_sklearn12
- py310_pandas15_numpy121_sklearn12
- py311_pandas20_numpy123_sklearn12
- py310_pandas14_numpy121_sklearn12
- py311_pandas15_numpy123_sklearn12
runner:
- ubuntu-latest
- macos-latest
Expand Down Expand Up @@ -101,7 +101,7 @@ jobs:
- name: Set dependencies
id: dependencies
env:
DEPS_CONFIG: py310_pandas15_numpy121_sklearn12
DEPS_CONFIG: py310_pandas14_numpy121_sklearn12
run: |
source ci/deps/${DEPS_CONFIG}.sh
echo "CI_PYTHON_VERSION=${CI_PYTHON_VERSION}" >> $GITHUB_ENV
Expand Down
2 changes: 1 addition & 1 deletion ci/appveyor/py310.ps1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
$env:CI_PYTHON_VERSION="3.10.*"
$env:CI_PANDAS_VERSION="1.5.*"
$env:CI_PANDAS_VERSION="1.4.*"
$env:CI_NUMPY_VERSION="1.21.*"
$env:CI_SKLEARN_VERSION="1.2.*"
2 changes: 1 addition & 1 deletion ci/appveyor/py311.ps1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
$env:CI_PYTHON_VERSION="3.11.*"
$env:CI_PANDAS_VERSION="2.0.*"
$env:CI_PANDAS_VERSION="1.5.*"
$env:CI_NUMPY_VERSION="1.23.*"
$env:CI_SKLEARN_VERSION="1.2.*"
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# shellcheck shell=sh
export CI_PYTHON_VERSION='3.10.*'
export CI_PANDAS_VERSION='1.5.*'
export CI_PANDAS_VERSION='1.4.*'
export CI_NUMPY_VERSION='1.21.*'
export CI_SKLEARN_VERSION='1.2.*'
export CI_NO_SLOW=true
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# shellcheck shell=sh
export CI_PYTHON_VERSION='3.11.*'
export CI_PANDAS_VERSION='2.0.*'
export CI_PANDAS_VERSION='1.5.*'
export CI_NUMPY_VERSION='1.23.*'
export CI_SKLEARN_VERSION='1.2.*'
export CI_NO_SLOW=false

0 comments on commit afebde3

Please sign in to comment.