-
-
Notifications
You must be signed in to change notification settings - Fork 269
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
detect: pin numpy to prevent usage of 2.0
- Loading branch information
Showing
17 changed files
with
29 additions
and
30 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -42,5 +42,5 @@ | |
"devDependencies": { | ||
"@scrypted/sdk": "file:../../sdk" | ||
}, | ||
"version": "0.1.63" | ||
"version": "0.1.64" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
# must ensure numpy is pinned to prevent dependencies with an unpinned numpy from pulling numpy>=2.0. | ||
numpy==1.26.4 | ||
coremltools==7.1 | ||
Pillow==10.3.0 |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -42,5 +42,5 @@ | |
"devDependencies": { | ||
"@scrypted/sdk": "file:../../sdk" | ||
}, | ||
"version": "0.1.100" | ||
"version": "0.1.101" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
opencv-python==4.9.0.80 | ||
opencv-python==4.10.0.82 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -37,5 +37,5 @@ | |
"devDependencies": { | ||
"@scrypted/sdk": "file:../../sdk" | ||
}, | ||
"version": "0.0.90" | ||
"version": "0.0.91" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,5 @@ | ||
# plugin | ||
numpy>=1.16.2 | ||
|
||
# must ensure numpy is pinned to prevent dependencies with an unpinned numpy from pulling numpy>=2.0. | ||
numpy==1.26.4 | ||
imutils>=0.5.0 | ||
|
||
# locked to version because 4.8.0.76 is broken. | ||
# todo: check newer versions. | ||
opencv-python==4.8.0.74 | ||
|
||
# pillow-simd is available on x64 linux | ||
# pillow-simd confirmed not building with arm64 linux or apple silicon | ||
Pillow>=5.4.1; 'linux' not in sys_platform or platform_machine != 'x86_64' | ||
pillow-simd; 'linux' in sys_platform and platform_machine == 'x86_64' | ||
opencv-python==4.10.0.82 | ||
Pillow==10.3.0 |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -42,5 +42,5 @@ | |
"devDependencies": { | ||
"@scrypted/sdk": "file:../../sdk" | ||
}, | ||
"version": "0.1.102" | ||
"version": "0.1.103" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
opencv-python==4.9.0.80 | ||
opencv-python==4.10.0.82 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,4 @@ | ||
# must ensure numpy is pinned to prevent dependencies with an unpinned numpy from pulling numpy>=2.0. | ||
numpy==1.26.4 | ||
openvino==2024.1.0 | ||
Pillow==10.3.0 |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -53,5 +53,5 @@ | |
"devDependencies": { | ||
"@scrypted/sdk": "file:../../sdk" | ||
}, | ||
"version": "0.1.61" | ||
"version": "0.1.62" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
--extra-index-url https://google-coral.github.io/py-repo/ | ||
# must ensure numpy is pinned to prevent dependencies with an unpinned numpy from pulling numpy>=2.0. | ||
numpy==1.26.4 | ||
pycoral~=2.0 | ||
tflite-runtime==2.5.0.post1 | ||
Pillow==10.3.0 |