Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
fpgmaas committed Sep 3, 2024
1 parent 02aea72 commit 8b4f6a0
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 12 deletions.
14 changes: 7 additions & 7 deletions .github/actions/setup-python-env/action.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
name: 'Setup Python Environment'
description: 'Set up Python environment for the given Python version'
name: "Setup Python Environment"
description: "Set up Python environment for the given Python version"

inputs:
python-version:
description: 'Python version for setup-python'
description: "Python version for setup-python"
required: true
default: '3.12'
default: "3.12"

runs:
using: 'composite'
using: "composite"
steps:
- uses: actions/setup-python@v5
with:
Expand All @@ -17,9 +17,9 @@ runs:
- name: Install uv
run: pipx install uv
env:
UV_VERSION: '0.4.2'
UV_VERSION: "0.4.2"
shell: bash

- name: Install Python dependencies
run: uv sync --frozen
shell: bash
shell: bash
1 change: 0 additions & 1 deletion .github/workflows/on-release-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ on:
branches: [main]

jobs:

set-version:
runs-on: ubuntu-24.04
steps:
Expand Down
2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
include cookiecutter.json
recursive-include hooks *
recursive-include {{cookiecutter.project_name}} *
recursive-include {{cookiecutter.project_name}} *
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ build-backend = "setuptools.build_meta"
packages = ["cookiecutter_uv"]

[tool.setuptools.package-data]
"cookiecutter_uv" = ["*"]
"cookiecutter_uv" = ["*"]

[project.scripts]
ccp = 'cookiecutter_uv.cli:main'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ runs:

- name: Install Python dependencies
run: uv sync --frozen
shell: bash
shell: bash
Original file line number Diff line number Diff line change
Expand Up @@ -69,4 +69,4 @@ jobs:

- name: Deploy documentation
run: uv run mkdocs gh-deploy --force
{% endif %}
{% endif %}

0 comments on commit 8b4f6a0

Please sign in to comment.