Skip to content

Commit

Permalink
Fix names of Cython and Pillow in the detect waste example
Browse files Browse the repository at this point in the history
  • Loading branch information
mknorps committed Feb 8, 2023
1 parent 4b27d86 commit e1dc0ce
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "fawltydeps"
version = "0.1.0"
version = "0.1.1"
description = "Find undeclared 3rd-party dependencies in your Python project."
authors = [
"Maria Knorps <maria.knorps@tweag.io>",
Expand Down
8 changes: 4 additions & 4 deletions tests/real_projects/detect-waste.toml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ sha256 = "b7c34d528bba97a4ace1aa6efee90d31ae1419581577d6ee13c3cf6718357e36"
# Value: list (set) of packages names that are declared
"<unused>" = [
"albumentations",
"cython",
"Cython",
"funcy",
"iterative-stratification",
"matplotlib",
Expand All @@ -72,7 +72,7 @@ sha256 = "b7c34d528bba97a4ace1aa6efee90d31ae1419581577d6ee13c3cf6718357e36"
"olefile",
"omegaconf",
"opencv-contrib-python",
"pillow",
"Pillow",
"pycocotools",
"pyyaml",
"scikit-image",
Expand Down Expand Up @@ -122,14 +122,14 @@ sha256 = "b7c34d528bba97a4ace1aa6efee90d31ae1419581577d6ee13c3cf6718357e36"
# Key: filename containing declared dependencies
# Value: list (set) of external packages imported
"<unused>" = [
"cython" , # needed to install scipy via conda
"Cython" , # needed to install scipy via conda
# actually unused
"oauthlib",
"olefile",
# unmatched due to identity mapping
"opencv-contrib-python",
"iterative-stratification",
"pillow",
"Pillow",
"pyyaml",
"scikit-learn",
"scikit-image",
Expand Down

0 comments on commit e1dc0ce

Please sign in to comment.