Skip to content

Commit e1dc0ce

Browse files
committed
Fix names of Cython and Pillow in the detect waste example
1 parent 4b27d86 commit e1dc0ce

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "fawltydeps"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
description = "Find undeclared 3rd-party dependencies in your Python project."
55
authors = [
66
"Maria Knorps <[email protected]>",

tests/real_projects/detect-waste.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ sha256 = "b7c34d528bba97a4ace1aa6efee90d31ae1419581577d6ee13c3cf6718357e36"
6363
# Value: list (set) of packages names that are declared
6464
"<unused>" = [
6565
"albumentations",
66-
"cython",
66+
"Cython",
6767
"funcy",
6868
"iterative-stratification",
6969
"matplotlib",
@@ -72,7 +72,7 @@ sha256 = "b7c34d528bba97a4ace1aa6efee90d31ae1419581577d6ee13c3cf6718357e36"
7272
"olefile",
7373
"omegaconf",
7474
"opencv-contrib-python",
75-
"pillow",
75+
"Pillow",
7676
"pycocotools",
7777
"pyyaml",
7878
"scikit-image",
@@ -122,14 +122,14 @@ sha256 = "b7c34d528bba97a4ace1aa6efee90d31ae1419581577d6ee13c3cf6718357e36"
122122
# Key: filename containing declared dependencies
123123
# Value: list (set) of external packages imported
124124
"<unused>" = [
125-
"cython" , # needed to install scipy via conda
125+
"Cython" , # needed to install scipy via conda
126126
# actually unused
127127
"oauthlib",
128128
"olefile",
129129
# unmatched due to identity mapping
130130
"opencv-contrib-python",
131131
"iterative-stratification",
132-
"pillow",
132+
"Pillow",
133133
"pyyaml",
134134
"scikit-learn",
135135
"scikit-image",

0 commit comments

Comments
 (0)