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
10 changes: 8 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,9 @@ jobs:
unittest:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ['3.12']
python-version: ['3.12', '3.13']
steps:
- name: Checkout PyAutoConf
uses: actions/checkout@v2
Expand Down Expand Up @@ -36,7 +37,12 @@ jobs:
pip3 install setuptools
pip3 install wheel
pip3 install pytest coverage pytest-cov
pip install ./PyAutoConf "./PyAutoArray[optional]"
pip install ./PyAutoConf ./PyAutoArray
if [ "${{ matrix.python-version }}" = "3.12" ]; then
pip install "./PyAutoArray[optional]"
else
pip install numba pynufft
fi

- name: Extract branch name
shell: bash
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ classifiers = [
"Topic :: Scientific/Engineering :: Physics",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.12"
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13"
]
keywords = ["cli"]
dependencies = [
Expand Down
Loading