Skip to content

Commit

Permalink
Add pywavelets to pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
ethanjli committed Jan 17, 2024
1 parent edef2b0 commit 8b91566
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 3 deletions.
39 changes: 38 additions & 1 deletion processing/segmenter/poetry.lock

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

8 changes: 6 additions & 2 deletions processing/segmenter/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -76,9 +76,13 @@ scikit-image = [
{ version = "==0.19.3", source = "pypi", markers = "platform_machine != 'armv7l'" },
{ version = "==0.19.3", source = "piwheels", markers = "platform_machine == 'armv7l'" },
]
# note: the following packages are only indirect dependencies, but we need to download wheels from
# the appropriate sources, so we must explicitly select them here
pillow = [
# note: this is only an indirect dependency, but we need to download wheels from the appropriate
# source, so we must explicitly select it here
{ version = "==10.1.0", source = "pypi", markers = "platform_machine != 'armv7l'" },
{ version = "==10.1.0", source = "piwheels", markers = "platform_machine == 'armv7l'" },
]
pywavelets = [
{ version = "==1.5.0", source = "pypi", markers = "platform_machine != 'armv7l'" },
{ version = "==1.5.0", source = "piwheels", markers = "platform_machine == 'armv7l'" },
]

0 comments on commit 8b91566

Please sign in to comment.