Skip to content

Commit 71fdb19

Browse files
workaround flexparser frozen dataclass issue (#1412)
1 parent a46d6ca commit 71fdb19

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.github/workflows/tests+artifacts+pypi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,7 @@ jobs:
291291
with:
292292
submodules: recursive
293293
fetch-depth: 0 # https://github.com/pypa/setuptools_scm/issues/480
294-
- run: pip install -r tests/devops_tests/requirements.txt
294+
- run: pip install -r tests/devops_tests/requirements.txt "flexparser<0.4"
295295
- env:
296296
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
297297
run: pytest --durations=10 -v -s -We -p no:unraisableexception -k "not test_run_notebooks" tests/devops_tests

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@ def get_long_description():
7272
else ""
7373
),
7474
"pyevtk" + ("==1.2.0" if CI else ""),
75+
"flexparser<0.4",
7576
],
7677
extras_require={
7778
"tests": [

0 commit comments

Comments
 (0)