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
12 changes: 8 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Py 3.10, 3.11 | Windows Mac Linux
name: Py 3.10, 3.11, 3.12 | Windows Mac Linux

on:
push:
Expand Down Expand Up @@ -184,7 +184,7 @@ jobs:
fail-fast: false
matrix:
os: ${{fromJson(needs.set-os.outputs.matrix_os)}}
python-version: ['3.10', '3.11']
python-version: ['3.10', '3.11', '3.12']
env:
PYTHON_VER: ${{ matrix.python-version }}

Expand Down Expand Up @@ -235,7 +235,7 @@ jobs:
fail-fast: false
matrix:
os: ${{fromJson(needs.set-os.outputs.matrix_os)}}
python-version: ['3.10', '3.11']
python-version: ['3.10', '3.11', '3.12']

steps:
- uses: conda-incubator/setup-miniconda@v3
Expand All @@ -260,6 +260,10 @@ jobs:
python -m pip install --upgrade pip wheel
pip install coverage pytest coveralls .

- name: Install setuptools for Python 3.12
if: matrix.python-version == '3.12'
run: pip install setuptools

- name: Run pytest & generate coverage report
shell: bash -l {0}
run: |
Expand Down Expand Up @@ -291,7 +295,7 @@ jobs:
fail-fast: false
matrix:
os: ${{fromJson(needs.set-os.outputs.matrix_os)}}
python-version: ['3.10', '3.11']
python-version: ['3.10', '3.11', '3.12']

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ channels:
- conda-forge
- defaults
dependencies:
- python>=3.8,<3.12
- python>=3.10
- pip
- numpy>=2.0.0
- pandas>=2.2.2
Expand Down