From b68e08be0e897042acf222bb22ab5c74542c5968 Mon Sep 17 00:00:00 2001 From: Bradley Sappington Date: Tue, 21 May 2024 13:49:16 -0400 Subject: [PATCH] update min version for RTD and _init_ --- readthedocs.yml | 2 +- webbpsf/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/readthedocs.yml b/readthedocs.yml index 8269c123..6ce39637 100644 --- a/readthedocs.yml +++ b/readthedocs.yml @@ -9,7 +9,7 @@ version: 2 build: os: ubuntu-22.04 tools: - python: "3.9" + python: "3.10" # Build documentation in the docs/ directory with Sphinx sphinx: diff --git a/webbpsf/__init__.py b/webbpsf/__init__.py index 0506f64f..5578d6a7 100644 --- a/webbpsf/__init__.py +++ b/webbpsf/__init__.py @@ -21,7 +21,7 @@ except ImportError: __version__ = "" -__minimum_python_version__ = "3.9" +__minimum_python_version__ = "3.10" class UnsupportedPythonError(Exception):