From 426c4131a40fd226518d58c86dd680aef785dd48 Mon Sep 17 00:00:00 2001 From: Marshall Perrin Date: Tue, 25 Jul 2023 17:25:10 -0400 Subject: [PATCH] Increment minimum data files version to 1.2.0 --- webbpsf/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webbpsf/__init__.py b/webbpsf/__init__.py index 033a8878..d15a2636 100644 --- a/webbpsf/__init__.py +++ b/webbpsf/__init__.py @@ -40,7 +40,7 @@ class UnsupportedPythonError(Exception): # required. If changes to the code and data mean WebbPSF won't work # properly with an old data package, increment this version number. # (It's checked against $WEBBPSF_DATA/version.txt) -DATA_VERSION_MIN = (1, 1, 1) +DATA_VERSION_MIN = (1, 2, 0) class Conf(_config.ConfigNamespace):