Compare commits

..

2 Commits

Author SHA1 Message Date
clrbuilder 1f2b9cc5a7 Update packages file for version 38680
Signed-off-by: clrbuilder <clrbuilder@intel.com>
2023-03-30 00:06:55 -07:00
William Douglas aa0028d372 Correct test for config value being set
Fix the vendor.py test checking if cargo vendoring should be done.

Signed-off-by: William Douglas <william.douglas@intel.com>
2023-03-29 16:31:28 -07:00
2 changed files with 4 additions and 1 deletions
+3
View File
@@ -4010,6 +4010,7 @@ pypi-jupyter_server_terminals
pypi-jupyter_sphinx
pypi-jupyterlab
pypi-jupyterlab_launcher
pypi-jupyterlab_link_share
pypi-jupyterlab_pygments
pypi-jupyterlab_server
pypi-jupyterlab_widgets
@@ -4152,6 +4153,7 @@ pypi-phabricator
pypi-pickleshare
pypi-picobox
pypi-pid
pypi-pidigits
pypi-pillow
pypi-pint
pypi-pip
@@ -4335,6 +4337,7 @@ pypi-requirements_parser
pypi-resolvelib
pypi-responses
pypi-restructuredtext_lint
pypi-retrolab
pypi-retry
pypi-retry_decorator
pypi-retryz
+1 -1
View File
@@ -22,7 +22,7 @@ def vendor_check():
if 'autospec' not in config.sections():
return False
if vendor := config['autospec'].get('cargo_vendor'):
if vendor:
if vendor == "true":
return 'cargo'
return False