Skip to content

Commit

Permalink
pin uv version in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
saxix committed Oct 11, 2024
1 parent 80015b4 commit acc97f9
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.3.0
current_version = 0.4.0
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)
serialize = {major}.{minor}.{patch}
commit = False
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,9 @@ jobs:
python-version: 3.12
architecture: 'x64'
- uses: yezz123/setup-uv@v4
with:
uv-version: "0.4.15"

- name: lint
if: needs.changes.outputs.lint
run: |
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,8 @@ jobs:
key: ${{ matrix.python-version }}-${{matrix.django-version}}-${{ hashFiles('pyproject.toml') }}-venv

- uses: yezz123/setup-uv@v4

with:
uv-version: "0.4.15"

- name: Test
continue-on-error: false
Expand Down
5 changes: 5 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
0.4
---
* fixes wrong dependency version


0.3
---
* fixes get_validation_for_field
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "hope-flex-fields"
version = "0.3.0"
version = "0.4.0"
description = ""
authors = [
{name = "sax", email = "[email protected]"},
Expand Down
2 changes: 1 addition & 1 deletion src/hope_flex_fields/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VERSION = __version__ = "0.3.0"
VERSION = __version__ = "0.4.0"

0 comments on commit acc97f9

Please sign in to comment.