Skip to content

Commit 2ccb76d

Browse files
Merge pull request #150 from himoto/fix-ci
Update CI
2 parents af3d974 + 436699d commit 2ccb76d

File tree

2 files changed

+12
-7
lines changed

2 files changed

+12
-7
lines changed

.github/workflows/CI.yml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,26 +15,29 @@ jobs:
1515
matrix:
1616
os:
1717
- ubuntu-latest
18-
- macos-latest
18+
- macos-14
1919
# Disabling Windows tests as it's known to not work:
2020
# https://github.com/SciML/diffeqpy/pull/86#issuecomment-1011675735
2121
# - windows-latest
22-
architecture: [x64]
23-
python-version: ['3.10']
22+
python-version: ['3.8', '3.12']
2423
fail-fast: false
2524
name: Test ${{ matrix.os }} ${{ matrix.architecture }}
2625
Python ${{ matrix.python-version }}
2726
steps:
28-
- uses: actions/checkout@v1
27+
- uses: actions/checkout@v4
2928
- name: Setup python
30-
uses: actions/setup-python@v2
29+
uses: actions/setup-python@v5
3130
with:
3231
python-version: ${{ matrix.python-version }}
3332
architecture: ${{ matrix.architecture }}
3433
- name: Install tox
3534
run: |
3635
python -m pip install --upgrade pip
3736
python -m pip install --upgrade tox
37+
- name: Install Julia using jill
38+
run: |
39+
python -m pip install --upgrade jill
40+
python -c "from jill.install import install_julia; install_julia(version='1.10', confirm=True)"
3841
- name: Run test
3942
run: python -m tox -- --cov=diffeqpy -s
4043
env:

setup.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,11 @@ def readme():
1212
classifiers=[
1313
'Development Status :: 4 - Beta',
1414
'License :: OSI Approved :: MIT License',
15-
'Programming Language :: Python :: 3.6',
16-
'Programming Language :: Python :: 3.7',
1715
'Programming Language :: Python :: 3.8',
16+
'Programming Language :: Python :: 3.9',
17+
'Programming Language :: Python :: 3.10',
18+
'Programming Language :: Python :: 3.11',
19+
'Programming Language :: Python :: 3.12',
1820
'Topic :: Scientific/Engineering :: Mathematics',
1921
'Topic :: Scientific/Engineering :: Physics'
2022
],

0 commit comments

Comments
 (0)