Skip to content

Commit

Permalink
testing with conda python 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
GiovanniBussi committed Nov 13, 2024
1 parent 41e7cc6 commit fe7350b
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,12 @@ jobs:
export CPU_COUNT=2
conda-build -c conda-forge conda
rm -fr MDRefine # make sure this is not imported by mistake in tests
- name: Test 3.13
run: |
source activate base
conda create -n py313 -c conda-forge -c local python=3.13 MDRefine pytest
source activate py313
pytest -v
- name: Test 3.12
run: |
source activate base
Expand All @@ -119,6 +125,12 @@ jobs:
conda create -n py310 -c conda-forge -c local python=3.10 MDRefine pytest
source activate py310
pytest -v
- name: Test 3.9
run: |
source activate base
conda create -n py39 -c conda-forge -c local python=3.9 MDRefine pytest
source activate py39
pytest -v
- name: Deploy conda
if: ${{ matrix.os == 'ubuntu-latest' && startsWith(github.ref, 'refs/tags/') }}
#env:
Expand Down
1 change: 1 addition & 0 deletions conda/conda_build_config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ CONDA_BUILD_SYSROOT:
- /opt/MacOSX10.13.sdk # [osx and x86_64]
- /opt/MacOSX11.0.sdk # [osx and arm64]
python:
- "3.13"
- "3.12"
- "3.11"
- "3.10"
Expand Down

0 comments on commit fe7350b

Please sign in to comment.