Skip to content

Commit

Permalink
changing setup.cfg to use most recent mira (#638)
Browse files Browse the repository at this point in the history
* changing setup.cfg to use most recent mira

* changing test.yml and lint.yml to exclude python 3.8

* updating to latest mira release 0.9.0
  • Loading branch information
sabinala authored Jan 8, 2025
1 parent 2f910c9 commit 0845bea
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8]
python-version: [3.9, '3.10', '3.11']

steps:
- uses: actions/checkout@v2
Expand All @@ -35,4 +35,4 @@ jobs:
pip install -e .[tests]
- name: Lint
run: ./scripts/lint.sh
run: ./scripts/lint.sh
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [3.8, 3.9, '3.10']
python-version: [3.9, '3.10', '3.11']
os: [ubuntu-latest] # , macos-latest]

steps:
Expand Down Expand Up @@ -50,4 +50,4 @@ jobs:
- name: Test
shell: bash
run: |
pytest tests/ -s -n auto
pytest tests/ -s -n auto
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ license_files = LICENSE
install_requires =
jupyter
torch >= 1.8.0
mira @ git+https://github.com/indralab/mira.git@0.7.0
mira @ git+https://github.com/indralab/mira.git@0.9.0
chirho[dynamical] @ git+https://github.com/BasisResearch/chirho@4fbd03ce9aa25f536dc06c943ceef363cd2c56c4
sympytorch
torchdiffeq
Expand All @@ -24,7 +24,7 @@ install_requires =

zip_safe = false
include_package_data = true
python_requires = >=3.8
python_requires = >=3.9

packages = find:

Expand Down

0 comments on commit 0845bea

Please sign in to comment.