Skip to content

Commit

Permalink
Allow all Python 3.11.X
Browse files Browse the repository at this point in the history
It would seem that napari fixed the issue described with 3.11.1
  • Loading branch information
gselzer committed Aug 12, 2024
1 parent 0e9dfc6 commit ff1a9f3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 9 deletions.
4 changes: 1 addition & 3 deletions dev-environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,7 @@ name: napari-imagej-dev
channels:
- conda-forge
dependencies:
# Breaking change in 3.11.1 breaks napari - see
# https://github.com/napari/napari/issues/5705 for the fix
- python >= 3.8, <=3.11.0
- python >= 3.8, <3.12
# Project dependencies
- confuse
- imglyb >= 2.1.0
Expand Down
4 changes: 1 addition & 3 deletions environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,7 @@ name: napari-imagej
channels:
- conda-forge
dependencies:
# Breaking change in 3.11.1 breaks napari - see
# https://github.com/napari/napari/issues/5705 for the fix
- python >= 3.8, <= 3.11.0
- python >= 3.8, < 3.12
# Project depenencies
- confuse
- imglyb >= 2.1.0
Expand Down
4 changes: 1 addition & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,7 @@ classifiers = [
]

# NB: Keep this in sync with environment.yml AND dev-environment.yml!
# Breaking change in 3.11.1 breaks napari - see
# https://github.com/napari/napari/issues/5705 for the fix
requires-python = ">=3.8, <=3.11.0"
requires-python = ">=3.8, <3.12"
dependencies = [
"confuse",
"imglyb >= 2.1.0",
Expand Down

0 comments on commit ff1a9f3

Please sign in to comment.