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",