From 593b59775b38d0b52334fd09c1b4d33c54455f3d Mon Sep 17 00:00:00 2001 From: Bryna Hazelton Date: Fri, 22 Mar 2024 16:57:23 -0700 Subject: [PATCH] Update min version of lunarsky and astropy --- README.md | 4 ++-- ci/pyuvdata_min_deps_tests.yml | 2 +- ci/pyuvdata_min_versions_tests.yml | 4 ++-- ci/pyuvdata_tests.yml | 4 ++-- ci/pyuvdata_tests_windows.yml | 4 ++-- environment.yaml | 4 ++-- setup.py | 4 ++-- 7 files changed, 13 insertions(+), 13 deletions(-) diff --git a/README.md b/README.md index b2121eff0..5f3af10a9 100644 --- a/README.md +++ b/README.md @@ -141,7 +141,7 @@ Note that as of v2.2, `pyuvdata` is only supported on python 3.7+. Required: -* astropy >= 5.0.4 +* astropy >= 6.0 * docstring_parser>=0.15 * h5py >= 3.1 * numpy >= 1.20 @@ -154,7 +154,7 @@ Optional: * astropy-healpix >= 0.6 (for working with beams in HEALPix formats) * astroquery >= 0.4.4 (for enabling phasing to ephemeris objects using JPL-Horizons) * hdf5plugin >= 3.1.0 (for enabling bitshuffle and other hdf5 compression filters in uvh5 files) -* lunarsky >=0.2.1 (for working with simulated datasets for lunar telescopes) +* lunarsky >=0.2.2 (for working with simulated datasets for lunar telescopes) * novas and novas_de405 (for using the NOVAS library for astrometry) * python-casacore >= 3.3.1 (for working with CASA measurement sets) * pyyaml >= 5.3 (for working with settings files for CST beam files) diff --git a/ci/pyuvdata_min_deps_tests.yml b/ci/pyuvdata_min_deps_tests.yml index ce97930bd..a20666530 100644 --- a/ci/pyuvdata_min_deps_tests.yml +++ b/ci/pyuvdata_min_deps_tests.yml @@ -2,7 +2,7 @@ name: pyuvdata_min_deps_tests channels: - conda-forge dependencies: - - astropy>=5.0.4 + - astropy>=6.0 - docstring_parser>=0.15 - h5py>=3.1 - scipy>=1.5 diff --git a/ci/pyuvdata_min_versions_tests.yml b/ci/pyuvdata_min_versions_tests.yml index 2f4e5f2aa..6a7a918b2 100644 --- a/ci/pyuvdata_min_versions_tests.yml +++ b/ci/pyuvdata_min_versions_tests.yml @@ -2,7 +2,7 @@ name: pyuvdata_min_versions_tests channels: - conda-forge dependencies: - - astropy==5.0.4 + - astropy==6.0.0 - astropy-healpix==0.6 - astroquery==0.4.4 - docstring_parser==0.15 @@ -22,6 +22,6 @@ dependencies: - setuptools_scm<7.0|>=7.0.3 - pip - pip: - - lunarsky==0.2.1 + - lunarsky==0.2.2 - novas - novas_de405 diff --git a/ci/pyuvdata_tests.yml b/ci/pyuvdata_tests.yml index 56a0dfaa3..26d851820 100644 --- a/ci/pyuvdata_tests.yml +++ b/ci/pyuvdata_tests.yml @@ -2,7 +2,7 @@ name: pyuvdata_tests channels: - conda-forge dependencies: - - astropy>=5.0.4 + - astropy>=6.0 - astropy-healpix>=0.6 - astroquery>=0.4.4 - docstring_parser>=0.15 @@ -23,6 +23,6 @@ dependencies: - setuptools_scm<7.0|>=7.0.3 - pip - pip: - - lunarsky>=0.2.1 + - lunarsky>=0.2.2 - novas - novas_de405 diff --git a/ci/pyuvdata_tests_windows.yml b/ci/pyuvdata_tests_windows.yml index 4eb08d66d..d05ab68f6 100644 --- a/ci/pyuvdata_tests_windows.yml +++ b/ci/pyuvdata_tests_windows.yml @@ -2,7 +2,7 @@ name: pyuvdata_tests_windows channels: - conda-forge dependencies: - - astropy>=5.0.4 + - astropy>=6.0 - astropy-healpix>=0.6 - astroquery>=0.4.4 - docstring_parser>=0.15 @@ -22,4 +22,4 @@ dependencies: - setuptools_scm<7.0|>=7.0.3 - pip - pip: - - lunarsky>=0.2.1 + - lunarsky>=0.2.2 diff --git a/environment.yaml b/environment.yaml index f253b78e6..b7b219d85 100644 --- a/environment.yaml +++ b/environment.yaml @@ -2,7 +2,7 @@ name: pyuvdata channels: - conda-forge dependencies: - - astropy>=5.0.4 + - astropy>=6.0 - astropy-healpix>=0.6 - astroquery>=0.4.4 - coverage @@ -26,6 +26,6 @@ dependencies: - setuptools_scm<7.0|>=7.0.3 - sphinx - pip: - - lunarsky>=0.2.1 + - lunarsky>=0.2.2 - novas - novas_de405 diff --git a/setup.py b/setup.py index dbaec20c3..b3b232619 100644 --- a/setup.py +++ b/setup.py @@ -107,7 +107,7 @@ def is_platform_windows(): cst_reqs = ["pyyaml>=5.3"] hdf5_compression_reqs = ["hdf5plugin>=3.1.0"] healpix_reqs = ["astropy_healpix>=0.6"] -lunar_reqs = ["lunarsky>=0.2.1"] +lunar_reqs = ["lunarsky>=0.2.2"] novas_reqs = ["novas", "novas_de405"] all_optional_reqs = ( astroquery_reqs @@ -144,7 +144,7 @@ def is_platform_windows(): "use_scm_version": {"local_scheme": branch_scheme}, "include_package_data": True, "install_requires": [ - "astropy>=5.0.4", + "astropy>=6.0", "docstring-parser>=0.15", "h5py>=3.1", "numpy>=1.20",