Skip to content

Commit 7d17356

Browse files
Merge pull request #163 from ChrisRackauckas-Claude/fix/ci-latest-package-versions
Fix CI to use latest package versions
2 parents b0ce7ce + 383f2a1 commit 7d17356

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/CI.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
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-
python-version: ['3.8', '3.13']
22+
python-version: ['3.10', '3.13']
2323
fail-fast: false
2424
name: Test ${{ matrix.os }} ${{ matrix.architecture }}
2525
Python ${{ matrix.python-version }}
@@ -47,3 +47,4 @@ jobs:
4747
with:
4848
file: ./coverage.xml
4949
name: codecov-umbrella
50+

setup.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@ def readme():
1212
classifiers=[
1313
'Development Status :: 4 - Beta',
1414
'License :: OSI Approved :: MIT License',
15-
'Programming Language :: Python :: 3.8',
16-
'Programming Language :: Python :: 3.9',
1715
'Programming Language :: Python :: 3.10',
1816
'Programming Language :: Python :: 3.11',
1917
'Programming Language :: Python :: 3.12',
@@ -28,6 +26,7 @@ def readme():
2826
author_email='[email protected]',
2927
license='MIT',
3028
packages=['diffeqpy','diffeqpy.tests'],
31-
install_requires=['juliacall>=0.9.14', 'jill'],
29+
python_requires='>=3.10',
30+
install_requires=['juliacall>=0.9.28', 'jill'],
3231
include_package_data=True,
3332
zip_safe=False)

0 commit comments

Comments
 (0)