From f5d88388f67c80ad3d1b90c857b26419bae6be7a Mon Sep 17 00:00:00 2001 From: Tomas Stolker Date: Thu, 21 Sep 2023 07:08:08 +0200 Subject: [PATCH] Dropped support for Python 3.8, updated requirements and configuration for sphinx documentation --- .github/workflows/ci.yml | 2 +- docs/conf.py | 4 ---- docs/installation.rst | 2 +- docs/requirements.txt | 4 +--- setup.py | 1 - 5 files changed, 3 insertions(+), 10 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0a224d3..1769337 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,7 +9,7 @@ jobs: strategy: matrix: - python-version: ['3.8', '3.9', '3.10', '3.11'] + python-version: ['3.9', '3.10', '3.11'] steps: - uses: actions/checkout@v2 diff --git a/docs/conf.py b/docs/conf.py index 36d5f17..919b13b 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -14,14 +14,12 @@ import sys sys.path.insert(0, os.path.abspath('../')) - # -- Project information ----------------------------------------------------- project = 'diskmap' copyright = '2020-2023, Tomas Stolker' author = 'Tomas Stolker' - # -- General configuration --------------------------------------------------- # Add any Sphinx extension module names here, as strings. They can be @@ -54,7 +52,6 @@ '.DS_Store', '.ipynb_checkpoints/*'] - # -- Options for HTML output ------------------------------------------------- # The theme to use for HTML and HTML Help pages. See the documentation for @@ -74,7 +71,6 @@ 'use_issues_button': True, 'use_repository_button': True, 'use_download_button': True, - 'logo_only': True, } # Add any paths that contain custom static files (such as style sheets) here, diff --git a/docs/installation.rst b/docs/installation.rst index 8e3e7ad..6270b32 100644 --- a/docs/installation.rst +++ b/docs/installation.rst @@ -3,7 +3,7 @@ Installation ============ -``diskmap`` is compatible with `Python `_ versions 3.8/3.9/3.10/3.11 and available through `PyPI `_ and `Github `_. +``diskmap`` is compatible with `Python `_ versions 3.9/3.10/3.11 and available through `PyPI `_ and `Github `_. Installation from PyPI ---------------------- diff --git a/docs/requirements.txt b/docs/requirements.txt index 2afa239..9251814 100644 --- a/docs/requirements.txt +++ b/docs/requirements.txt @@ -1,7 +1,5 @@ -markupsafe==2.0.1 -jinja2==2.11.3 +jupyter nbsphinx pandoc -jupyter sphinx-automodapi sphinx_book_theme diff --git a/setup.py b/setup.py index 7c3e3c4..58a2d85 100644 --- a/setup.py +++ b/setup.py @@ -28,7 +28,6 @@ 'Topic :: Scientific/Engineering :: Astronomy', 'License :: OSI Approved :: MIT License', 'Natural Language :: English', - 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10', 'Programming Language :: Python :: 3.11',