File tree Expand file tree Collapse file tree 2 files changed +12
-7
lines changed Expand file tree Collapse file tree 2 files changed +12
-7
lines changed Original file line number Diff line number Diff line change @@ -15,26 +15,29 @@ jobs:
15
15
matrix :
16
16
os :
17
17
- ubuntu-latest
18
- - macos-latest
18
+ - macos-14
19
19
# Disabling Windows tests as it's known to not work:
20
20
# https://github.com/SciML/diffeqpy/pull/86#issuecomment-1011675735
21
21
# - windows-latest
22
- architecture : [x64]
23
- python-version : ['3.10']
22
+ python-version : ['3.8', '3.12']
24
23
fail-fast : false
25
24
name : Test ${{ matrix.os }} ${{ matrix.architecture }}
26
25
Python ${{ matrix.python-version }}
27
26
steps :
28
- - uses : actions/checkout@v1
27
+ - uses : actions/checkout@v4
29
28
- name : Setup python
30
- uses : actions/setup-python@v2
29
+ uses : actions/setup-python@v5
31
30
with :
32
31
python-version : ${{ matrix.python-version }}
33
32
architecture : ${{ matrix.architecture }}
34
33
- name : Install tox
35
34
run : |
36
35
python -m pip install --upgrade pip
37
36
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)"
38
41
- name : Run test
39
42
run : python -m tox -- --cov=diffeqpy -s
40
43
env :
Original file line number Diff line number Diff line change @@ -12,9 +12,11 @@ def readme():
12
12
classifiers = [
13
13
'Development Status :: 4 - Beta' ,
14
14
'License :: OSI Approved :: MIT License' ,
15
- 'Programming Language :: Python :: 3.6' ,
16
- 'Programming Language :: Python :: 3.7' ,
17
15
'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' ,
18
20
'Topic :: Scientific/Engineering :: Mathematics' ,
19
21
'Topic :: Scientific/Engineering :: Physics'
20
22
],
You can’t perform that action at this time.
0 commit comments