Skip to content
Merged

Release #2372

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
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ project(
'python3',
[
'-c',
'from setuptools_scm import get_version;print(get_version(normalize=False, fallback_version="2.1.30"))',
'from setuptools_scm import get_version;print(get_version(normalize=False, fallback_version="2.1.31"))',
],
check: true,
).stdout().strip(),
Expand Down
2 changes: 1 addition & 1 deletion ozi/scripts/create_subproject_symlink.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
matches = glob('subprojects/OZI-*')
if not matches:
raise IndexError
target = pathlib.Path(matches[0])
target = pathlib.Path('..', matches[0])
link_path = pathlib.Path('subprojects/ozi')
with suppress(FileExistsError):
link_path.symlink_to(
Expand Down
Loading