Skip to content

bump to 0.25.1 #303

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 1, 2023
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
2 changes: 1 addition & 1 deletion openpiv/PIV_3D_plotting.py
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,7 @@ def quiver_3D(
colors = [c for c, d in zip(colors, df) if d > 0] + list(
chain(*[[c, c] for c, d in zip(colors, df) if d > 0])
)
# colors in ax.quiver 3d is really fucked up/ will probably change with updates:
# colors in ax.quiver 3d will probably change with updates:
# requires list with: first len(u) entries define the colors of the shaft, then the next len(u)*2 entries define
# the color ofleft and right arrow head side in alternating order. Try for example:
# colors = ["red" for i in range(len(cf))] + list(chain(*[["blue", "yellow"] for i in range(len(cf))]))
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

setup(
name="OpenPIV",
version='0.25.0',
version='0.25.1',
packages=find_packages(),
include_package_data=True,
long_description=long_description,
Expand Down