Skip to content

Commit

Permalink
Merge branch 'fix-windows-paths' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
matthiaskoenig committed Jan 8, 2025
2 parents 9a0ed5c + 65b0a8d commit cb35b91
Show file tree
Hide file tree
Showing 6 changed files with 28 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tool.bumpversion]
current_version = "0.5.0"
current_version = "0.5.1"
commit = true
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
serialize = ["{major}.{minor}.{patch}"]
Expand Down
23 changes: 15 additions & 8 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,19 +25,26 @@ jobs:

steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5

- name: Install uv and set the python version
uses: astral-sh/setup-uv@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip wheel
python -m pip install tox tox-gh-actions
enable-cache: true

# - name: Set up Python ${{ matrix.python-version }}
# uses: actions/setup-python@v5
# with:
# python-version: ${{ matrix.python-version }}
# - name: Install dependencies
# run: |
# python -m pip install --upgrade pip wheel
# python -m pip install tox tox-gh-actions

# Update output format to enable automatic inline annotations.
- name: Test with tox
run:
tox --
uvx --with tox-uv tox --
# tox --

release:
needs: test
Expand Down
1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@ dev = [
"ruff>=0.8.6",
"pre-commit>=4.0.1",
"mypy>=1.9.0",
"hatch"
]
test = [
"tox>=4.14.2",
Expand Down
10 changes: 10 additions & 0 deletions release-notes/0.5.1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Release notes for pymetadata 0.5.1
![pymetadata](https://github.com/matthiaskoenig/pymetadata/raw/develop/docs/images/favicon/pymetadata-100x100-300dpi.png)

We are pleased to release the next version of pymetadata including the
following changes:

## Features & fixes
- Fix #52 windows paths

Your pymetadata team
2 changes: 1 addition & 1 deletion src/pymetadata/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from pathlib import Path

__author__ = "Matthias Koenig"
__version__ = "0.5.0"
__version__ = "0.5.1"


program_name: str = "pymetadata"
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.

0 comments on commit cb35b91

Please sign in to comment.