Compare commits

..

2 Commits

Author SHA1 Message Date
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 9 additions and 2 deletions
+6
View File
@@ -3670,6 +3670,7 @@ pypi-asyncssh
pypi-asynctest
pypi-atomicwrites
pypi-atpublic
pypi-attrdict
pypi-attrs
pypi-autocommand
pypi-automat
@@ -4047,6 +4048,7 @@ pypi-markdown2
pypi-markdown_it_py
pypi-matplotlib
pypi-matplotlib_inline
pypi-maturin
pypi-mdit_py_plugins
pypi-mdurl
pypi-mergedeep
@@ -4438,6 +4440,7 @@ pypi-stack_data
pypi-statsmodels
pypi-storops
pypi-subprocess_tee
pypi-suds
pypi-sure
pypi-svg.path
pypi-tabulate
@@ -4459,6 +4462,7 @@ pypi-three_merge
pypi-tifffile
pypi-tinycss2
pypi-tldextract
pypi-tokenizers
pypi-toml
pypi-tomli
pypi-tomli_w
@@ -4564,11 +4568,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:
return 'cargo'
return False