Skip to content

Commit

Permalink
Merge pull request #65 from mattpitkin/new_release
Browse files Browse the repository at this point in the history
Create new release v2.4.7
  • Loading branch information
mattpitkin authored Jul 2, 2024
2 parents ba5c332 + 7382c92 commit f3df7a1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
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

0 comments on commit f3df7a1

Please sign in to comment.