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

Update version to 1.0.0rc1 #373

Merged
merged 3 commits into from
Sep 2, 2024
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
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def message(lib, env, command, key):
"For example,\n",
'\texport LDFLAGS="-L/usr/local/opt/openblas/lib"\n',
'\texport CPPFLAGS="-I/usr/local/opt/openblas/include"\n',
f"\nYou can also try installing '{lib}' from {env} with:",
f"\nYou can also try installing '{lib}' from {env} with: ",
f"\n\t{command} install {arg}\n",
)
warnings.warn("".join(warning))
Expand Down Expand Up @@ -380,6 +380,7 @@ def fftw_info(self):
"pandas>=1.1.3",
"lmfit>=1.0.2",
"matplotlib>=3.3.4",
"astropy>=6",
],
entry_points={"console_scripts": ["mrsimulator=mrsimulator.__main__:run"]},
extras_require=extras,
Expand Down
2 changes: 1 addition & 1 deletion src/mrsimulator/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
__license__ = "BSD License"
__maintainer__ = "Deepansh J. Srivastava"
__status__ = "Beta"
__version__ = "0.8.0rc1"
__version__ = "1.0.0rc1"

import os

Expand Down
Loading