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

Create new release v2.4.7 #65

Merged
merged 2 commits into from
Jul 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
2 changes: 1 addition & 1 deletion libstempo/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "2.4.6"
__version__ = "2.4.7"

import os
from ._find_tempo2 import find_tempo2_runtime
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ def _get_tempo2_install_location():

setup(
name="libstempo",
version="2.4.6", # remember to change it in __init__.py
version="2.4.7", # remember to change it in __init__.py
description="A Python wrapper for tempo2",
author="Michele Vallisneri",
author_email="vallis@vallis.org",
Expand Down Expand Up @@ -100,8 +100,8 @@ def _get_tempo2_install_location():
"libstempo.spharmORFbasis",
"libstempo.eccUtils",
],
setup_requires=["cython>=0.22", "numpy"],
install_requires=["numpy>=1.15.0", "scipy>=1.2.0", "matplotlib>=3.3.2", "ephem>=3.7.7.1"],
setup_requires=["cython>=0.22", "numpy<2.0"],
install_requires=["numpy>=1.15.0,<2.0", "scipy>=1.2.0", "matplotlib>=3.3.2", "ephem>=3.7.7.1"],
extras_require={"astropy": ["astropy>=4.1"]},
python_requires=">=3.7",
ext_modules=cythonize(
Expand Down
Loading