Skip to content

Commit

Permalink
Fix dev dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
monkeyman192 committed Dec 23, 2024
1 parent f48c0ec commit d6c98e2
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip uv
uv sync --frozen --dev
uv sync --frozen --group dev
- name: Build Python ${{ matrix.py_ver.version}} wheel
run: uv build
- name: Lint and format code
Expand Down Expand Up @@ -86,3 +86,4 @@ jobs:
with:
repository-url: https://test.pypi.org/legacy/
attestations: true
verbose: true
8 changes: 8 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,14 @@ dependencies = [
]
dynamic = ["version"]

[dependency-groups]
dev = [
"pytest",
"ruff",
"setuptools_scm",
"twine",
]

[tool.uv]
python-preference = "only-system"

Expand Down

0 comments on commit d6c98e2

Please sign in to comment.