Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Forbid Pydantic >= 2 for napari 0.4.17 #50

Merged
merged 2 commits into from
Jul 4, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .ci_support/linux_64_qt_bindingspyqt.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ channel_targets:
docker_image:
- quay.io/condaforge/linux-anvil-cos7-x86_64
qt:
- '5.12'
- '5.15'
qt_bindings:
- pyqt
2 changes: 1 addition & 1 deletion .ci_support/linux_64_qt_bindingspyside2.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ channel_targets:
docker_image:
- quay.io/condaforge/linux-anvil-cos7-x86_64
qt:
- '5.12'
- '5.15'
qt_bindings:
- pyside2
4 changes: 2 additions & 2 deletions .scripts/build_steps.sh

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions .scripts/create_conda_build_artifacts.sh

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

37 changes: 34 additions & 3 deletions README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ outputs:
- pint >=0.17
- psutil >=5.0
- psygnal>=0.3.4
- pydantic >=1.9.0
- pydantic >=1.9.0,<2
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should have been <2.0a0 😬

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Wow really??? 🤦

- pygments >=2.4.0
- pyopengl >=3.1.0
- pyyaml >=5.1
Expand Down