homey-lib 2.44.4 → 2.44.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1036,7 +1036,7 @@
1036
1036
  "pythonVersion": {
1037
1037
  "type": "string"
1038
1038
  },
1039
- "pythonDependencies": {
1039
+ "pythonPackages": {
1040
1040
  "type": "array",
1041
1041
  "items": {
1042
1042
  "type": "string"
package/lib/App/index.js CHANGED
@@ -230,7 +230,7 @@ class App {
230
230
  App.validatePythonVersion(appJson);
231
231
 
232
232
  // Validate that Python apps have cross-platform venvs
233
- if (levelPublish && appJson.runtime === 'python' && appJson.pythonDependencies !== undefined && appJson.pythonDependencies.length > 0) {
233
+ if (levelPublish && appJson.runtime === 'python' && appJson.pythonPackages !== undefined && appJson.pythonPackages.length > 0) {
234
234
  const missingVenvs = [];
235
235
  for (const platform of App.REQUIRED_PYTHON_PLATFORMS) {
236
236
  const venvPath = join(this._path, 'venvs', platform);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "homey-lib",
3
- "version": "2.44.4",
3
+ "version": "2.44.5",
4
4
  "description": "Shared Library for Homey",
5
5
  "main": "index.js",
6
6
  "scripts": {