Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,10 @@ jobs:
python-version: '3.11'
tags: []

- os: windows-latest
python-version: '3.12'
tags: []

if: ${{ needs.check-skip.outputs.skip != 'true' }}

steps:
Expand All @@ -61,6 +65,7 @@ jobs:
python-version: ${{ matrix.python-version }}

- name: Install GSL
if: runner.os != 'Windows'
run: |
if [ "${{ matrix.os }}" = "ubuntu-latest" ]; then
sudo apt-get update
Expand All @@ -81,15 +86,15 @@ jobs:
uv.lock

- name: Cache virtual environment
uses: actions/cache@v4
uses: actions/cache@v5
id: cache-venv
with:
path: .venv
key: venv-${{ runner.os }}-${{ matrix.python-version }}-${{ hashFiles('pyproject.toml') }}-${{ hashFiles('uv.lock') }}

- name: Cache cobaya_packages
id: cache-cobaya
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ./cobaya_packages
key: cobaya_packages-${{ runner.os }}-${{ matrix.python-version }}-${{ hashFiles('pyproject.toml') }}-${{ hashFiles('uv.lock') }}
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ dependencies = [
"numpy (>=1.22.1); python_version < '3.12'", # breaking change
"numpy (>=1.25); python_version >= '3.12'", # from distutils
"astropy (>=5.3.4)", # breaking change
"pandas (<2.1.0); python_version >= '3.12' and python_version < '3.13'",
]

[project.urls]
Expand All @@ -44,7 +43,8 @@ mflike = [
"syslibrary (>=0.2.0); python_version < '3.13'", # from mflike
]
docs = [
"sphinx",
"sphinx (<9); python_version < '3.12'", # tensorflow 2.13 pins typing-extensions==4.5.0
"sphinx; python_version >= '3.12'",
"sphinx-rtd-theme",
]
dev = [
Expand Down
Loading