Compare commits

..

5 Commits

Author SHA1 Message Date
clrbuilder e0a40a10f2 Update packages file for version 38710
Signed-off-by: clrbuilder <clrbuilder@intel.com>
2023-04-03 14:52:16 -07:00
clrbuilder 3b76c04f7f Update packages file for version 38700
Signed-off-by: clrbuilder <clrbuilder@intel.com>
2023-03-30 16:26:28 -07:00
clrbuilder 8b9b13698f Update packages file for version 38690
Signed-off-by: clrbuilder <clrbuilder@intel.com>
2023-03-30 11:21:18 -07:00
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 28 additions and 1 deletions
+27
View File
@@ -317,6 +317,7 @@ R-dendextend
R-desc
R-devtools
R-dfoptim
R-diagram
R-dichromat
R-diffobj
R-diffusionMap
@@ -1599,6 +1600,7 @@ gnome-music
gnome-online-accounts
gnome-panel
gnome-photos
gnome-remote-desktop
gnome-screensaver
gnome-screenshot
gnome-session
@@ -2552,6 +2554,7 @@ numactl
numatop
numlockx
numpy-stl
nv-codec-headers
nvme-cli
oath-toolkit
obs-studio
@@ -3636,6 +3639,7 @@ pypi-aiohttp
pypi-aiohttp_cors
pypi-aiosignal
pypi-aiosmtpd
pypi-aiosqlite
pypi-alabaster
pypi-altgraph
pypi-amqp
@@ -3799,6 +3803,10 @@ pypi-deepmerge
pypi-deepspeed
pypi-deprecated
pypi-deprecation
pypi-devpi_client
pypi-devpi_common
pypi-devpi_process
pypi-devpi_server
pypi-diff_cover
pypi-diff_match_patch
pypi-diffoscope
@@ -3933,6 +3941,7 @@ pypi-httpx
pypi-huggingface_hub
pypi-humanfriendly
pypi-humanize
pypi-hupper
pypi-hyperframe
pypi-hyperlink
pypi-hypothesis
@@ -4005,11 +4014,15 @@ pypi-jupyter_events
pypi-jupyter_nbgallery
pypi-jupyter_packaging
pypi-jupyter_server
pypi-jupyter_server_fileid
pypi-jupyter_server_mathjax
pypi-jupyter_server_terminals
pypi-jupyter_server_ydoc
pypi-jupyter_sphinx
pypi-jupyter_ydoc
pypi-jupyterlab
pypi-jupyterlab_launcher
pypi-jupyterlab_link_share
pypi-jupyterlab_pygments
pypi-jupyterlab_server
pypi-jupyterlab_widgets
@@ -4026,6 +4039,7 @@ pypi-langcodes
pypi-lark_parser
pypi-latexcodec
pypi-lavacli
pypi-lazy
pypi-lazy_loader
pypi-lazy_object_proxy
pypi-ldap3
@@ -4062,6 +4076,7 @@ pypi-mkdocs_exclude
pypi-mkdocs_material_extensions
pypi-mkdocstrings
pypi-mkdocstrings_python
pypi-ml_dtypes
pypi-mock
pypi-modulegraph
pypi-molecule
@@ -4130,6 +4145,7 @@ pypi-parsedatetime
pypi-parsley
pypi-parso
pypi-partd
pypi-passlib
pypi-paste
pypi-pastedeploy
pypi-pastel
@@ -4152,6 +4168,7 @@ pypi-phabricator
pypi-pickleshare
pypi-picobox
pypi-pid
pypi-pidigits
pypi-pillow
pypi-pint
pypi-pip
@@ -4159,6 +4176,8 @@ pypi-pip_tools
pypi-pkgconfig
pypi-pkginfo
pypi-pkgutil_resolve_name
pypi-plaster
pypi-plaster_pastedeploy
pypi-platformdirs
pypi-plotly
pypi-pluggy
@@ -4245,6 +4264,7 @@ pypi-pyqrcode
pypi-pyqt6_sip
pypi-pyqt_builder
pypi-pyquery
pypi-pyramid
pypi-pyreadline
pypi-pyrfc3339
pypi-pyro4
@@ -4335,6 +4355,7 @@ pypi-requirements_parser
pypi-resolvelib
pypi-responses
pypi-restructuredtext_lint
pypi-retrolab
pypi-retry
pypi-retry_decorator
pypi-retryz
@@ -4439,6 +4460,7 @@ pypi-sshtunnel
pypi-stack_data
pypi-statsmodels
pypi-storops
pypi-strictyaml
pypi-subprocess_tee
pypi-suds
pypi-sure
@@ -4475,6 +4497,7 @@ pypi-tox
pypi-tqdm
pypi-traitlets
pypi-trampolim
pypi-translationstring
pypi-trimesh
pypi-trio
pypi-trio_websocket
@@ -4522,7 +4545,9 @@ pypi-urwid
pypi-user_agents
pypi-userpath
pypi-uvloop
pypi-venusian
pypi-verboselogs
pypi-versioneer
pypi-vine
pypi-virtualenv
pypi-volatile
@@ -4575,6 +4600,7 @@ pypi-yapf
pypi-yarg
pypi-yarl
pypi-yattag
pypi-ypy_websocket
pypi-zabbix_api
pypi-zc.lockfile
pypi-zeroconf
@@ -4887,6 +4913,7 @@ tracker
tracker-miners
tree
tree-sitter
trurl
tzdata
uchardet
ucpp
+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