Skip to content

Commit abfbfb6

Browse files
committed
Merge branch 'develop' into 'main'
Develop See merge request weave/pydv!168
2 parents 8e18a31 + 5254182 commit abfbfb6

File tree

6 files changed

+17
-9
lines changed

6 files changed

+17
-9
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
env:
1919
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token
2020
with:
21-
tag_name: pydv-3.6.4
22-
release_name: PyDV 3.6.4
21+
tag_name: pydv-3.6.5
22+
release_name: PyDV 3.6.5
2323
draft: false
2424
prerelease: false

docs/release_notes.rst

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
Release Notes
44
=============
5+
3.6.5
6+
------
7+
* Bugfix: Launcher update for HPCs read files from command line
8+
9+
3.6.4
10+
------
11+
* Launcher update for HPCs
12+
513
3.6.3
614
------
715
* Updated default parameter values for curve comparison functions in PyDVpy API

pydv/pdv

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
#!/usr/bin/env bash
22
pth=$(realpath $0)
3+
pth=$(dirname $pth)
4+
pth="$pth/pdv_launcher.py $*"
35

46
if [[ $pth == *"pdv-sa"* ]]; then
57

6-
/usr/tce/bin/python3 pdv_launcher.py
8+
/usr/tce/bin/python3 $pth
79

810
else
911

@@ -15,8 +17,6 @@ else
1517

1618
fi
1719

18-
pth=$(dirname $pth)
19-
pth=$pth"/pdv_launcher.py"
2020
python3 $pth
2121

2222
fi

pydv/scripts/date.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
04.29.2025
1+
05.01.2025

pydv/scripts/version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.6.4
1+
3.6.5

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tool]
22
[tool.poetry]
33
name = "PyDV"
4-
version = "3.6.4"
4+
version = "3.6.5"
55
description = "PyDV: Python Data Visualizer"
66
license = "BSD"
77
classifiers = [
@@ -65,7 +65,7 @@ build-backend = "poetry.core.masonry.api"
6565
line-length = 79
6666

6767
[tool.bumpver]
68-
current_version = "3.6.4"
68+
current_version = "3.6.5"
6969
version_pattern = "MAJOR.MINOR.PATCH"
7070
commit_message = "bump version {old_version} -> {new_version}"
7171
commit = true

0 commit comments

Comments
 (0)