Skip to content

DOC: Unpin outdated RTD sphinx maxversion #199

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Feb 3, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions .github/workflows/ci_workflows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,14 +48,17 @@ jobs:
- os: ubuntu-latest
python-version: '3.12'
toxenv: py312-test-sphinx80
- os: ubuntu-latest
python-version: '3.12'
toxenv: py312-test-sphinx81
- os: ubuntu-latest
python-version: '3.13'
toxenv: py313-test-sphinxdev

# MacOS X - just the stable and dev
- os: macos-latest
python-version: '3.10'
toxenv: py310-test-sphinx80-clocale
python-version: '3.11'
toxenv: py311-test-sphinx81-clocale
- os: macos-latest
python-version: '3.13'
toxenv: py313-test-sphinxdev
Expand All @@ -66,7 +69,7 @@ jobs:
toxenv: py38-test-sphinx_oldest
- os: windows-latest
python-version: '3.10'
toxenv: py310-test-sphinx80
toxenv: py310-test-sphinx81
- os: windows-latest
python-version: '3.13'
toxenv: py313-test-sphinxdev
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
fetch-depth: 0
- uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5.4.0
with:
python-version: 3.8
python-version: "3.12"

- name: Install dependencies
run: |
Expand Down
2 changes: 1 addition & 1 deletion .readthedocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ version: 2
build:
os: ubuntu-22.04
tools:
python: "3.11"
python: "3.12"
jobs:
post_checkout:
- git fetch --shallow-since=2023-01-01 || true
Expand Down
2 changes: 1 addition & 1 deletion LICENSE.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2014-2016, Astropy Developers
Copyright (c) 2014-2025, Astropy Developers

All rights reserved.

Expand Down
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ include CHANGES.rst
include LICENSE.rst

include setup.cfg
include pyproject.toml

exclude *.pyc *.o
prune build
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[build-system]
requires = ["setuptools>=30.3.0",
"setuptools_scm",
"setuptools_scm>=8.0.0",
"wheel"]
build-backend = 'setuptools.build_meta'


[tool.setuptools_scm]
write_to = "sphinx_automodapi/version.py"
version_file = "sphinx_automodapi/version.py"
4 changes: 1 addition & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ author_email = [email protected]
license = BSD 3-Clause License
url = https://github.com/astropy/sphinx-automodapi
classifiers =
Development Status :: 3 - Alpha
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
Programming Language :: Python
Programming Language :: Python :: 3
Expand All @@ -31,8 +31,6 @@ test =
coverage
setuptools;python_version>='3.12'
rtd =
# https://github.com/readthedocs/sphinx_rtd_theme/issues/1463
sphinx<7
sphinx-rtd-theme

[options.package_data]
Expand Down
5 changes: 0 additions & 5 deletions setup.py

This file was deleted.

3 changes: 2 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py{38,39,310,311,312,313}-test-sphinx{_oldest,53,62,70,71,72,80,dev}{-cov}{-clocale}
envlist = py{38,39,310,311,312,313}-test-sphinx{_oldest,53,62,70,71,72,80,81,dev}{-cov}{-clocale}
requires = pip >= 18.0
setuptools >= 30.3.0
isolated_build = true
Expand All @@ -14,6 +14,7 @@ deps =
sphinx71: sphinx==7.1.*
sphinx72: sphinx==7.2.*
sphinx80: sphinx==8.0.*
sphinx81: sphinx==8.1.*
sphinxdev: git+https://github.com/sphinx-doc/sphinx.git
extras =
test: test
Expand Down
Loading