Skip to content

Commit 570ce5f

Browse files
authored
Merge pull request #61 from a5chin/feature/ds
Fix venv
2 parents bd65880 + 751a4e8 commit 570ce5f

File tree

4 files changed

+24
-1
lines changed

4 files changed

+24
-1
lines changed

.github/actions/setup-python-with-uv/action.yml

+7
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ inputs:
1010

1111
runs:
1212
using: composite
13+
1314
steps:
1415
- name: Install uv
1516
uses: astral-sh/setup-uv@v5
@@ -20,3 +21,9 @@ runs:
2021
- name: Install Dependencies
2122
run: uv sync --frozen
2223
shell: bash
24+
25+
- name: Activate venv
26+
run: |
27+
uv venv
28+
source .venv/bin/activate
29+
shell: bash

docs/guides/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ How to use this repository.
1111
- [How to use Tools](tools/index.md)
1212
- [How to use config in this repository](tools/config.md)
1313
- [How to use logger in this repository](tools/logger.md)
14-
- [How to use trace in this repository](tools/trace.md)
14+
- [How to use tracer in this repository](tools/tracer.md)

pyproject.toml

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ dependencies = [
1919
[tool.uv]
2020
dev-dependencies = [
2121
"cookiecutter>=2.6.0",
22+
"cookiecutter-data-science>=2.1.0",
2223
"mkdocs-material>=9.5.50",
2324
"pre-commit>=4.1.0",
2425
"pyright>=1.1.392.post0",

uv.lock

+15
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)