Skip to content

Commit

Permalink
Upgrade packages (eclipse-velocitas#100)
Browse files Browse the repository at this point in the history
* Upgrade packages

* Update auto-generated notice file
  • Loading branch information
doosuu committed May 23, 2024
1 parent 69b45e1 commit 5ac7b1a
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .devcontainer/scripts/onCreateCommand.sh
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ git submodule update --init
echo "#######################################################"
echo "### Install Dependencies ###"
echo "#######################################################"
velocitas exec build-system install
velocitas exec build-system install 2>&1 | tee -a $HOME/install_dependencies.log

echo "#######################################################"
echo "### VADF package status ###"
Expand Down
6 changes: 3 additions & 3 deletions .velocitas-lock.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"packages": {
"devenv-runtimes": "v4.0.0",
"devenv-github-workflows": "v6.0.1",
"devenv-runtimes": "v4.0.1",
"devenv-github-workflows": "v6.0.2",
"devenv-github-templates": "v1.0.5",
"devenv-devcontainer-setup": "v2.2.1"
"devenv-devcontainer-setup": "v2.4.0"
}
}
6 changes: 3 additions & 3 deletions .velocitas.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"packages": {
"devenv-runtimes": "v4.0.0",
"devenv-github-workflows": "v6.0.1",
"devenv-runtimes": "v4.0.1",
"devenv-github-workflows": "v6.0.2",
"devenv-github-templates": "v1.0.5",
"devenv-devcontainer-setup": "v2.2.1"
"devenv-devcontainer-setup": "v2.4.0"
},
"components": [
"runtime-local",
Expand Down
2 changes: 1 addition & 1 deletion NOTICE-3RD-PARTY-CONTENT.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
|PyJWT|2.8.0|MIT|
|python-dateutil|2.9.0.post0|Apache 2.0<br/>BSD|
|PyYAML|6.0.1|MIT|
|requests|2.31.0|Apache 2.0|
|requests|2.32.2|Apache 2.0|
|setuptools|58.1.0|MIT|
|six|1.16.0|MIT|
|tqdm|4.66.4|MIT<br/>Mozilla Public License 2.0 (MPL 2.0)|
Expand Down
4 changes: 3 additions & 1 deletion install_deps.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,8 +138,10 @@ def cli() -> None:
if host_arch is None:
host_arch = build_arch

subprocess.check_call(["conan", "config", "set", "general.revisions_enabled=1"])

install_deps_via_conan(
build_arch, host_arch, args.debug or not args.release, args.build_all_deps
build_arch, host_arch, args.debug and not args.release, args.build_all_deps
)


Expand Down

0 comments on commit 5ac7b1a

Please sign in to comment.