From 2d9082ae6ac14f633c9b477f6f4348b6e9b8b522 Mon Sep 17 00:00:00 2001 From: Juanyong Duan Date: Wed, 8 Jan 2025 17:03:26 +0800 Subject: [PATCH] fix scipy version, py version, and linux arch --- .github/workflows/cd.yml | 1 + .github/workflows/ci.yml | 2 +- pyproject.toml | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 76c7679..83b308d 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -28,6 +28,7 @@ jobs: - name: Build wheels env: CIBW_ARCHS_WINDOWS: AMD64 + CIBW_ARCHS_LINUX: x86_64 run: python -m cibuildwheel --output-dir wheelhouse - uses: actions/upload-artifact@v4 diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e508559..3b02707 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,7 +22,7 @@ jobs: strategy: matrix: os: ["ubuntu-latest"] - python-version: ["3.9", "3.10.8", "3.11"] + python-version: ["3.9", "3.10.8", "3.11", "3.12"] # Steps represent a sequence of tasks that will be executed as part of the job steps: diff --git a/pyproject.toml b/pyproject.toml index 4dfe86f..d57da9d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -35,7 +35,7 @@ dependencies = [ "numpy<2, >=1.23.5", "pandas<2, >=1.3.5", "seasonal>=0.3.1", - "scipy>=1.9.3", + "scipy<1.13.0, >=1.9.3", "pytz>=2018.9", "rstl>=0.1.3", "psutil>=5.9.2",