Skip to content
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

Release/v0.4.0 #538

Merged
merged 3 commits into from
Jan 13, 2025
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
5 changes: 2 additions & 3 deletions CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,11 @@ authors:
orcid: 'https://orcid.org/0000-0002-8514-8279'
- family-names: Simson
given-names: Walter
email: [email protected]
affiliation: Stanford University
email: [email protected]
orcid: 'https://orcid.org/0000-0002-2801-8646'
identifiers:
- type: doi
value: 10.5281/zenodo.10719460
description: Zenodo DOI
repository-code: 'https://github.com/waltsims/k-wave-python'
license: GPL-3.0
license: LGPL-3.0
4 changes: 2 additions & 2 deletions kwave/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

# Test installation with:
# python3 -m pip install -i https://test.pypi.org/simple/ --extra-index-url=https://pypi.org/simple/ k-Wave-python==0.3.0
VERSION = "0.3.7"
VERSION = "0.4.0"

# Constants and Configurations
URL_BASE = "https://github.com/waltsims/"
Expand All @@ -22,7 +22,7 @@
raise NotImplementedError(f"k-wave-python is currently unsupported on this operating system: {PLATFORM}.")

# TODO: install directly in to /bin/ directory system directory is no longer needed
# TODO: depricate in 0.3.7
# TODO: depricate in 0.5.0
BINARY_PATH = Path(__file__).parent / "bin" / PLATFORM
BINARY_DIR = BINARY_PATH # add alias for BINARY_PATH for now

Expand Down
Loading