From ba81bd60a7c573285726434e917a643ec323ca45 Mon Sep 17 00:00:00 2001 From: Bryna Hazelton Date: Thu, 9 May 2024 14:24:14 -0700 Subject: [PATCH] prepare for version 1.0 --- CHANGELOG.md | 2 ++ docs/conf.py | 1 + setup.py | 1 + 3 files changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6c438388..d772b506 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## [Unreleased] +## [1.0.0] - 2024-05-09 + ### Changed - Updated minimum dependency versions: astropy>=6.0, h5py>=3.4, numpy>=1.23, pyuvdata>=2.4.3, scipy>=1.7.3, python>=3.10 diff --git a/docs/conf.py b/docs/conf.py index 15591542..5615b0ca 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -163,4 +163,5 @@ def setup(app): "astropy": ("https://docs.astropy.org/en/stable/", None), "astropy_healpix": ("https://astropy-healpix.readthedocs.io/en/latest/", None), "numpy": ("https://numpy.org/doc/stable/", None), + # "lunarsky": (None), lunarsky is not on RTD yet. Add it here when it is. } diff --git a/setup.py b/setup.py index 6bb5cada..110fa441 100644 --- a/setup.py +++ b/setup.py @@ -51,6 +51,7 @@ def branch_scheme(version): "scripts": glob.glob("scripts/*"), "use_scm_version": {"local_scheme": branch_scheme}, "include_package_data": True, + "python_requires": ">=3.10", "install_requires": [ "astropy>=6.0", "h5py>=3.4",