Skip to content

Commit

Permalink
Misc Updates (#65)
Browse files Browse the repository at this point in the history
* Add tests for Python 3.12

* Update sphinx
  • Loading branch information
TimPansino committed Mar 26, 2024
1 parent 2697b6a commit 65a786f
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", pypy3.9]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", pypy3.10]

runs-on: ${{ matrix.os }}
timeout-minutes: 5
Expand Down
6 changes: 3 additions & 3 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
#
# This is also used if you do content translation via gettext catalogs.
# Usually you set "language" from the command line for these cases.
language = None
language = "en"

# List of patterns, relative to source directory, that match files and
# directories to ignore when looking for source files.
Expand Down Expand Up @@ -111,6 +111,6 @@

# Example configuration for intersphinx: refer to the Python standard library.
intersphinx_mapping = {
"https://docs.python.org/3/": None,
"https://urllib3.readthedocs.io/en/latest/": None,
"python": ("https://docs.python.org/3/", None),
"urllib3": ("https://urllib3.readthedocs.io/en/latest/", None),
}
1 change: 1 addition & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ classifiers =
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Operating System :: OS Independent
License :: OSI Approved :: Apache Software License

Expand Down
5 changes: 3 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,9 @@ envlist =
py39
py310
py311
py312
pypy2.7
pypy3.9
pypy3.10
lint
docs

Expand All @@ -31,5 +32,5 @@ deps =
[testenv:docs]
commands = sphinx-build -d "{toxinidir}/docs_doctree" "{toxinidir}/docs/" "{toxinidir}/docs/_build" -W {posargs}
deps =
sphinx<5
sphinx<8
sphinx_rtd_theme

0 comments on commit 65a786f

Please sign in to comment.