Skip to content

Commit

Permalink
Merge pull request #2794 from martinholmer/paramtools-workaround
Browse files Browse the repository at this point in the history
Limit marshmallow version to work around paramtools bug
  • Loading branch information
martinholmer authored Aug 21, 2024
2 parents eec39bf + 59250ca commit 150becc
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
6 changes: 4 additions & 2 deletions conda.recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ requirements:
- "numpy>=1.26,<1.27"
- "pandas>=2.2"
- "bokeh>=2.4"
- "paramtools>=0.18.2"
- "marshmallow<3.22" # to work around paramtools bug
- "paramtools>=0.18.2" # requires marshmallow>=3.0
- numba
- curl
- openpyxl
Expand All @@ -23,7 +24,8 @@ requirements:
- "numpy>=1.26,<1.27"
- "pandas>=2.2"
- "bokeh>=2.4"
- "paramtools>=0.18.2"
- "marshmallow<3.22" # to work around paramtools bug
- "paramtools>=0.18.2" # requires marshmallow>=3.0
- numba
- curl
- openpyxl
Expand Down
3 changes: 2 additions & 1 deletion environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ dependencies:
- "numpy>=1.26,<1.27"
- "pandas>=2.2"
- "bokeh>=2.4"
- "paramtools>=0.18.2"
- "marshmallow<3.22" # to work around paramtools bug
- "paramtools>=0.18.2" # requires marshmallow>=3.0
- numba
- curl
- pytest
Expand Down

0 comments on commit 150becc

Please sign in to comment.