Skip to content

Commit

Permalink
Merge pull request #150 from himoto/fix-ci
Browse files Browse the repository at this point in the history
Update CI
  • Loading branch information
ChrisRackauckas authored Nov 20, 2024
2 parents af3d974 + 436699d commit 2ccb76d
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 7 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,26 +15,29 @@ jobs:
matrix:
os:
- ubuntu-latest
- macos-latest
- macos-14
# Disabling Windows tests as it's known to not work:
# https://github.com/SciML/diffeqpy/pull/86#issuecomment-1011675735
# - windows-latest
architecture: [x64]
python-version: ['3.10']
python-version: ['3.8', '3.12']
fail-fast: false
name: Test ${{ matrix.os }} ${{ matrix.architecture }}
Python ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4
- name: Setup python
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
architecture: ${{ matrix.architecture }}
- name: Install tox
run: |
python -m pip install --upgrade pip
python -m pip install --upgrade tox
- name: Install Julia using jill
run: |
python -m pip install --upgrade jill
python -c "from jill.install import install_julia; install_julia(version='1.10', confirm=True)"
- name: Run test
run: python -m tox -- --cov=diffeqpy -s
env:
Expand Down
6 changes: 4 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,11 @@ def readme():
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Scientific/Engineering :: Physics'
],
Expand Down

0 comments on commit 2ccb76d

Please sign in to comment.