Force python3:any for arch-specific packages
* Pybuild will select python3:any for packages that are purely python
but for packages that have native code build, it selects the python
version that exists when the package is built.
* Force python3:any so that these packages aren't stuck on a specific
python3 release.
Change-Id: I0c48101b999f3a130619a4478f26517501167f5e
diff --git a/python/dependencies/cryptoauthlib/debian/control b/python/dependencies/cryptoauthlib/debian/control
index 48091c0..beef98e 100644
--- a/python/dependencies/cryptoauthlib/debian/control
+++ b/python/dependencies/cryptoauthlib/debian/control
@@ -11,7 +11,7 @@
Package: python3-cryptoauthlib
Architecture: any
-Depends: ${misc:Depends}, ${python3:Depends}, ${shlibs:Depends}
+Depends: ${misc:Depends}, ${shlibs:Depends}, python3:any
Description: Python Wrapper Library for Microchip Security Products
# Python CryptoAuthLib module
.
diff --git a/python/dependencies/spidev/debian/control b/python/dependencies/spidev/debian/control
index 9f7c949..49e2ebe 100644
--- a/python/dependencies/spidev/debian/control
+++ b/python/dependencies/spidev/debian/control
@@ -11,7 +11,7 @@
Package: python3-spidev
Architecture: any
-Depends: ${misc:Depends}, ${python3:Depends}, ${shlibs:Depends}
+Depends: ${misc:Depends}, ${shlibs:Depends}, python3:any
Description: Python bindings for Linux SPI access through spidev
Python Spidev
=============