From 103c4aeda0bf2115a436852fba468649ed8622c8 Mon Sep 17 00:00:00 2001 From: Shannon Osborne Date: Tue, 23 Jun 2020 13:32:23 -0700 Subject: [PATCH 1/2] remove __all__ definition --- webbpsf/__init__.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/webbpsf/__init__.py b/webbpsf/__init__.py index 5a0c580e..d30f339f 100644 --- a/webbpsf/__init__.py +++ b/webbpsf/__init__.py @@ -23,8 +23,6 @@ except ImportError: __version__ = '' -__all__ = ['__version__'] - __minimum_python_version__ = "3.6" From a3e65a513b1977fd648b338eeff66b123320ef3b Mon Sep 17 00:00:00 2001 From: Shannon Osborne Date: Tue, 23 Jun 2020 13:38:23 -0700 Subject: [PATCH 2/2] replace deprecated function --- docs/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/conf.py b/docs/conf.py index 5b13dbc6..881a0900 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -42,7 +42,7 @@ def setup(app): - app.add_stylesheet("stsci.css") + app.add_css_file("stsci.css") conf.read([os.path.join(os.path.dirname(__file__), '..', 'setup.cfg')]) setup_cfg = dict(conf.items('metadata'))