Skip to content

Commit

Permalink
Merge pull request #69 from ModECI/experimental
Browse files Browse the repository at this point in the history
Fix cattrs issue
  • Loading branch information
pgleeson authored Dec 13, 2023
2 parents 50c54c5 + 386fa23 commit 490505e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [ "3.7", "3.8", "3.9", "3.10", "3.11"]
python-version: [ "3.8", "3.9", "3.10", "3.11"]
runs-on: [ubuntu-latest, macos-latest, windows-latest]

steps:
Expand All @@ -34,6 +34,7 @@ jobs:
with:
python-version: ${{ matrix.python-version }}


- name: Install package
run: |
python -m pip install --upgrade pip
Expand Down Expand Up @@ -73,7 +74,7 @@ jobs:
- name: Run pytest
run: |
pytest tests
pytest tests -v
- name: Install & test NeuroMLlite
run: |
Expand Down
3 changes: 1 addition & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ classifiers =
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Expand All @@ -39,7 +38,7 @@ install_requires =
numpy
tabulate
attrs
cattrs<23.2.1 # Issue with JSON serialisation from this version, see https://github.com/ModECI/modelspec/issues/66
cattrs>=23.2.3 # Issue with JSON serialisation in some versions, see https://github.com/ModECI/modelspec/issues/66
docstring-parser
typing_extensions;python_version<'3.8'
typing_compat;python_version<'3.8'
Expand Down

0 comments on commit 490505e

Please sign in to comment.