Skip to content

Commit 490505e

Browse files
authored
Merge pull request #69 from ModECI/experimental
Fix cattrs issue
2 parents 50c54c5 + 386fa23 commit 490505e

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
strategy:
2525
fail-fast: false
2626
matrix:
27-
python-version: [ "3.7", "3.8", "3.9", "3.10", "3.11"]
27+
python-version: [ "3.8", "3.9", "3.10", "3.11"]
2828
runs-on: [ubuntu-latest, macos-latest, windows-latest]
2929

3030
steps:
@@ -34,6 +34,7 @@ jobs:
3434
with:
3535
python-version: ${{ matrix.python-version }}
3636

37+
3738
- name: Install package
3839
run: |
3940
python -m pip install --upgrade pip
@@ -73,7 +74,7 @@ jobs:
7374
7475
- name: Run pytest
7576
run: |
76-
pytest tests
77+
pytest tests -v
7778
7879
- name: Install & test NeuroMLlite
7980
run: |

setup.cfg

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ classifiers =
2222
Programming Language :: Python
2323
Programming Language :: Python :: 3
2424
Programming Language :: Python :: 3 :: Only
25-
Programming Language :: Python :: 3.7
2625
Programming Language :: Python :: 3.8
2726
Programming Language :: Python :: 3.9
2827
Programming Language :: Python :: 3.10
@@ -39,7 +38,7 @@ install_requires =
3938
numpy
4039
tabulate
4140
attrs
42-
cattrs<23.2.1 # Issue with JSON serialisation from this version, see https://github.com/ModECI/modelspec/issues/66
41+
cattrs>=23.2.3 # Issue with JSON serialisation in some versions, see https://github.com/ModECI/modelspec/issues/66
4342
docstring-parser
4443
typing_extensions;python_version<'3.8'
4544
typing_compat;python_version<'3.8'

0 commit comments

Comments
 (0)