-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into csande/KOALA-2352-task-effect-assign-team
- Loading branch information
Showing
19 changed files
with
2,112 additions
and
2,949 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
name: "Install Python and uv" | ||
description: "Installs Python using .python-version file's version, and uv with the given version" | ||
|
||
inputs: | ||
UV_VERSION: | ||
description: "uv version to install" | ||
required: false | ||
default: "0.5.23" | ||
PYTHON_VERSION: | ||
description: "Version range or exact version of Python or PyPy to use, using SemVer's version range syntax. Reads from .python-version if unset." | ||
required: false | ||
default: "" | ||
CHECK_LATEST: | ||
description: "If check-latest is set to true, the action first checks if the cached version is the latest one" | ||
required: false | ||
default: false | ||
runs: | ||
using: "composite" | ||
steps: | ||
- name: Set up Python | ||
id: python-setup | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: ${{inputs.PYTHON_VERSION}} | ||
python-version-file: ".python-version" | ||
check-latest: ${{inputs.CHECK_LATEST}} | ||
|
||
- name: Set Python version in the environment | ||
run: | | ||
echo "PYTHON_VERSION=${{ steps.python-setup.outputs.python-version }}" >> $GITHUB_ENV | ||
shell: bash | ||
|
||
- name: Install uv | ||
uses: astral-sh/setup-uv@v5 | ||
with: | ||
enable-cache: true | ||
version: ${{ inputs.UV_VERSION }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
from canvas_sdk.utils.http import Http | ||
from canvas_sdk.utils.http import Http, batch_get, batch_patch, batch_post, batch_put | ||
|
||
__all__ = ("Http",) | ||
__all__ = ( | ||
"Http", | ||
"batch_get", | ||
"batch_patch", | ||
"batch_post", | ||
"batch_put", | ||
) |
Oops, something went wrong.