From 75e19d995313c39b3c7935aa749508f7da9568b3 Mon Sep 17 00:00:00 2001 From: Michele De La Pena Date: Mon, 30 Oct 2023 14:37:53 -0400 Subject: [PATCH 1/2] Need to pin astrocut due to conflicts with latests version and urllib3 version --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 4c25ef304..2f0652af3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -40,7 +40,7 @@ dependencies = [ 'pandas', 'spherical_geometry>=1.2.22', 'astroquery>=0.4', - 'astrocut', + 'astrocut<=0.9', 'photutils>1.5.0', 'lxml', 'PyPDF2', From a360be040d665374e9c5f27cde99e3db144adc1a Mon Sep 17 00:00:00 2001 From: Michele De La Pena Date: Mon, 30 Oct 2023 14:48:08 -0400 Subject: [PATCH 2/2] Added CHANGELOG message regarding pinning of Astrocut --- CHANGELOG.rst | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 5d08edb25..3e2f28828 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -18,12 +18,14 @@ number of the code change for that issue. These PRs can be viewed at: https://github.com/spacetelescope/drizzlepac/pulls -3.6.2rc0 (unreleased) +3.6.2rc2 (unreleased) ===================== +- At this time pin Astrocut to versions <=0.9 to avoid conflicts with urllib3 + package. [#1145] - Added functionality to allow the use of a two-column poller file. This is used to update the WFPC2 SVM aperture header keywords from the values in the poller - file. + file. [#1683] - Removed the version restriction on matplotlib. [#1649]