Skip to content

Commit

Permalink
MAINT: pin pydantic to version 1.x
Browse files Browse the repository at this point in the history
This is a workaround until we add proper support for v2 (see #1075)
  • Loading branch information
gdementen committed Sep 14, 2023
1 parent 31f116b commit 3f272dc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion doc/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ pandas >=0.20
matplotlib
tables # ==pytables
openpyxl
pydantic
pydantic ==1.*

# dependencies to actually build the documentation
sphinx ==5.3.0
Expand Down
2 changes: 1 addition & 1 deletion environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ dependencies:
- openpyxl
- xlsxwriter
- pytest >=6
- pydantic
- pydantic ==1.*
2 changes: 1 addition & 1 deletion make_release.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def update_metapackage(local_repository, release_name, public_release=True, **ex
print(f'Updating larrayenv metapackage to version {version}')
dependencies = [
f'larray =={version}', f'larray-editor =={version}', f'larray_eurostat =={version}',
'qtconsole', 'matplotlib', 'pyqt', 'qtpy', 'pytables', 'pydantic',
'qtconsole', 'matplotlib', 'pyqt', 'qtpy', 'pytables', 'pydantic ==1.*',
'xlsxwriter', 'xlrd', 'xlwt', 'openpyxl', 'xlwings',
]
check_call([
Expand Down

0 comments on commit 3f272dc

Please sign in to comment.