Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions .github/actions/setup-uv/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,10 @@ inputs:
description: Python version to install
required: false
default: "3.12"
pyproject-file:
description: Path to the pyproject.toml driving the install
required: true
version-file:
description: Path to a file (typically pyproject.toml) declaring the pinned uv version
required: false
default: pyproject.toml
cache-dependency-glob:
description: Multiline glob of files to key the uv cache on. Leave empty to disable caching.
required: false
Expand All @@ -21,6 +22,6 @@ runs:
with:
enable-cache: ${{ inputs.cache-dependency-glob != '' }}
ignore-nothing-to-cache: true
pyproject-file: ${{ inputs.pyproject-file }}
version-file: ${{ inputs.version-file }}
python-version: ${{ inputs.python-version }}
cache-dependency-glob: ${{ inputs.cache-dependency-glob }}
1 change: 0 additions & 1 deletion .github/workflows/publish-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ jobs:
uses: ./.github/actions/setup-uv
with:
python-version: ${{ inputs.python-version }}
pyproject-file: ${{ inputs.package-dir }}/pyproject.toml

- name: Check if local version is greater than PyPI
id: version_check
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ jobs:
uses: ./.github/actions/setup-uv
with:
python-version: ${{ env.PYTHON_VERSION }}
pyproject-file: pyproject.toml
cache-dependency-glob: |
**/pyproject.toml
**/uv.lock
Expand Down Expand Up @@ -46,7 +45,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ steps.project_version.outputs.value }}
release_name: Release ${{ github.ref }}
name: Release ${{ steps.project_version.outputs.value }}
draft: false
prerelease: false

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ build-backend = "hatchling.build"
requires-python = ">=3.12"
name = "optimus"
readme = "README.md"
version = "0.71.1"
version = "0.71.2"
dependencies = [
"ipython>=8.10",
"jupyterlab>=3.0",
Expand Down
2 changes: 1 addition & 1 deletion uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading