Compare commits

..

4 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
clrbuilder fb17b414ed Update packages file for version 38650
Signed-off-by: clrbuilder <clrbuilder@intel.com>
2023-03-28 00:08:23 -07:00
William Douglas ead0c3e12d Only vendor if cargo_vendor is true not just if it exists
Signed-off-by: William Douglas <william.douglas@intel.com>
2023-03-27 10:19:53 -07:00
2 changed files with 12 additions and 2 deletions
+9
View File
@@ -3670,6 +3670,7 @@ pypi-asyncssh
pypi-asynctest
pypi-atomicwrites
pypi-atpublic
pypi-attrdict
pypi-attrs
pypi-autocommand
pypi-automat
@@ -4009,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
@@ -4047,6 +4049,7 @@ pypi-markdown2
pypi-markdown_it_py
pypi-matplotlib
pypi-matplotlib_inline
pypi-maturin
pypi-mdit_py_plugins
pypi-mdurl
pypi-mergedeep
@@ -4150,6 +4153,7 @@ pypi-phabricator
pypi-pickleshare
pypi-picobox
pypi-pid
pypi-pidigits
pypi-pillow
pypi-pint
pypi-pip
@@ -4333,6 +4337,7 @@ pypi-requirements_parser
pypi-resolvelib
pypi-responses
pypi-restructuredtext_lint
pypi-retrolab
pypi-retry
pypi-retry_decorator
pypi-retryz
@@ -4438,6 +4443,7 @@ pypi-stack_data
pypi-statsmodels
pypi-storops
pypi-subprocess_tee
pypi-suds
pypi-sure
pypi-svg.path
pypi-tabulate
@@ -4459,6 +4465,7 @@ pypi-three_merge
pypi-tifffile
pypi-tinycss2
pypi-tldextract
pypi-tokenizers
pypi-toml
pypi-tomli
pypi-tomli_w
@@ -4564,11 +4571,13 @@ pypi-xstatic_objectpath
pypi-xstatic_roboto_fontface
pypi-xvfbwrapper
pypi-xyzservices
pypi-y_py
pypi-yamllint
pypi-yamlloader
pypi-yapf
pypi-yarg
pypi-yarl
pypi-yattag
pypi-zabbix_api
pypi-zc.lockfile
pypi-zeroconf
+3 -2
View File
@@ -21,8 +21,9 @@ def vendor_check():
config.read('options.conf')
if 'autospec' not in config.sections():
return False
if config['autospec'].get('cargo_vendor'):
return 'cargo'
if vendor := config['autospec'].get('cargo_vendor'):
if vendor == "true":
return 'cargo'
return False