Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Semantic Router
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mirrored_repos
MachineLearning
aurelio-labs
Semantic Router
Commits
a2c132e0
Commit
a2c132e0
authored
1 month ago
by
James Briggs
Browse files
Options
Downloads
Patches
Plain Diff
fix: python version
parent
d70fc729
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.github/workflows/docs.yml
+5
-4
5 additions, 4 deletions
.github/workflows/docs.yml
.github/workflows/lint.yml
+0
-3
0 additions, 3 deletions
.github/workflows/lint.yml
.github/workflows/release.yml
+7
-0
7 additions, 0 deletions
.github/workflows/release.yml
with
12 additions
and
7 deletions
.github/workflows/docs.yml
+
5
−
4
View file @
a2c132e0
...
@@ -21,16 +21,17 @@ jobs:
...
@@ -21,16 +21,17 @@ jobs:
-
"
3.11"
-
"
3.11"
steps
:
steps
:
-
uses
:
actions/checkout@v4
-
uses
:
actions/checkout@v4
-
name
:
Set up Python
3.11
#
- name: Set up Python
${{ matrix.python-version }}
uses
:
actions/setup-python@v4
#
uses: actions/setup-python@v4
with
:
#
with:
python-version
:
${{ matrix.python-version }}
#
python-version: ${{ matrix.python-version }}
-
name
:
Install uv
-
name
:
Install uv
run
:
|
run
:
|
curl -LsSf https://astral.sh/uv/install.sh | sh
curl -LsSf https://astral.sh/uv/install.sh | sh
-
name
:
Install dependencies
-
name
:
Install dependencies
run
:
|
run
:
|
uv venv --python ${{ matrix.python-version }}
uv venv --python ${{ matrix.python-version }}
source .venv/bin/activate
uv pip install .[docs]
uv pip install .[docs]
-
name
:
Build docs
-
name
:
Build docs
...
...
This diff is collapsed.
Click to expand it.
.github/workflows/lint.yml
+
0
−
3
View file @
a2c132e0
...
@@ -25,9 +25,6 @@ jobs:
...
@@ -25,9 +25,6 @@ jobs:
curl -LsSf https://astral.sh/uv/install.sh | sh
curl -LsSf https://astral.sh/uv/install.sh | sh
uv venv --python 3.13
uv venv --python 3.13
uv pip install .[dev]
uv pip install .[dev]
with
:
cache-key
:
${{ runner.os }}-uv-${{ hashFiles('**/uv.lock') }}-${{ matrix.python-version }}
cache-name
:
uv
-
name
:
Analyzing the code with our lint
-
name
:
Analyzing the code with our lint
run
:
|
run
:
|
make lint
make lint
This diff is collapsed.
Click to expand it.
.github/workflows/release.yml
+
7
−
0
View file @
a2c132e0
...
@@ -9,6 +9,13 @@ jobs:
...
@@ -9,6 +9,13 @@ jobs:
build
:
build
:
runs-on
:
ubuntu-latest
runs-on
:
ubuntu-latest
steps
:
steps
:
-
name
:
Cache uv
uses
:
actions/cache@v4
with
:
path
:
~/.uv
key
:
${{ runner.os }}-uv-${{ hashFiles('**/uv.lock') }}-${{ matrix.python-version }}
restore-keys
:
|
${{ runner.os }}-uv-${{ matrix.python-version }}
-
uses
:
actions/checkout@v2
-
uses
:
actions/checkout@v2
-
name
:
Set up Python
-
name
:
Set up Python
run
:
uv venv --python
3.13
run
:
uv venv --python
3.13
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment