Skip to content

Commit

Permalink
Merge branch 'main' into validate-jlink-plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
vpa1977 authored Jan 29, 2025
2 parents 0cba165 + 6f1048a commit 9caa5cf
Show file tree
Hide file tree
Showing 6 changed files with 293 additions and 41 deletions.
10 changes: 9 additions & 1 deletion docs/how-to/code/build-docs/task.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,16 @@
###########################################
summary: test the "Build the docs" guide

# Run this test first, as it needs a clean project tree
priority: 100

prepare: |
tests.pkgs install python3-venv python3-dev libapt-pkg-dev
execute: |
pushd $PROJECT_PATH/
mkdir $HOME/clean-rockcraft
cp -r $PROJECT_PATH/* $HOME/clean-rockcraft
pushd $HOME/clean-rockcraft
git init .
Expand All @@ -34,3 +39,6 @@ execute: |
then
exit $ret
fi
restore: |
rm -rf $HOME/clean-rockcraft
2 changes: 1 addition & 1 deletion docs/tutorial/code/fastapi/requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
fastapi[standard]
fastapi[standard]>=0.109.1
16 changes: 9 additions & 7 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,16 @@ classifiers = [
"Programming Language :: Python :: 3.12",
]
dependencies = [
"craft-application~=4.6.0",
"craft-archives>=2.0.0",
"craft-cli>=2.15.0",
"craft-application",
"craft-archives",
"craft-cli",
"craft-parts@git+https://github.com/vpa1977/craft-parts@jlink-plugin",
"craft-platforms~=0.3",
"craft-providers>=2.0.4",
"craft-platforms",
"craft-providers",

"overrides",
"spdx-lookup",
"tabulate>=0.8.10",
"tabulate",
]

[project.scripts]
Expand Down Expand Up @@ -333,7 +334,8 @@ dev = [
"coverage>=7.6.8",
"freezegun>=1.5.1",
"hypothesis>=6.122.1",
"poetry>=1.8.5", # Needed for testing the poetry plugin.
"poetry>=2.0.0", # Needed for testing the poetry plugin.
"poetry-plugin-export",
"pyfakefs>=5.7.2",
"pylint>=3.3.2",
"pytest>=8.3.4",
Expand Down
Loading

0 comments on commit 9caa5cf

Please sign in to comment.