From c28f4317a3cc0ced9ec0ce6c40880586d437aba5 Mon Sep 17 00:00:00 2001 From: Tim Lister Date: Mon, 17 Jun 2024 10:15:23 -0700 Subject: [PATCH] Drop version requirements slightly to allow it to work on python 3.8 --- pyproject.toml | 2 +- requirements.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 9ee379c..f3c6a8b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -19,7 +19,7 @@ dependencies = [ "ipykernel", # Support for Jupyter notebooks "astropy>=4.0, <6.0", "toml", - "synphot>=0.3, <1.4.0" + "synphot>=0.3, <1.3.0" ] # On a mac, install optional dependencies with `pip install '.[dev]'` (include the single quotes) diff --git a/requirements.txt b/requirements.txt index dc53cd5..4400248 100644 --- a/requirements.txt +++ b/requirements.txt @@ -3,7 +3,7 @@ astropy<6.0 jedi==0.17.2 ipython toml -synphot==1.3.0 +synphot==1.2.1 pytest matplotlib importlib_resources==3.2.0; python_version < '3.9'