Skip to content

Commit

Permalink
Support Python 3.9 and later
Browse files Browse the repository at this point in the history
  • Loading branch information
AA-Turner committed Aug 7, 2023
1 parent fa863db commit 604e2cb
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 23 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
name: Test
on: [push, pull_request]
on:
push:
pull_request:
workflow_dispatch:

permissions:
contents: read
Expand All @@ -14,11 +17,11 @@ jobs:
strategy:
matrix:
python:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12-dev"
- "3.13-dev"
fail-fast: false

steps:
Expand Down
6 changes: 6 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
Release 1.0.5 (unreleased)
==========================

* Drop support for Python 3.8
* Raise minimum required Sphinx version to 5.0

Release 1.0.4 (2023-01-21)
==========================

Expand Down
17 changes: 0 additions & 17 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,23 +13,6 @@ Install from PyPI::

pip install -U sphinxcontrib-applehelp

Release signatures
==================

Releases are signed with following keys:

* `498D6B9E <https://pgp.mit.edu/pks/lookup?op=vindex&search=0x102C2C17498D6B9E>`_
* `5EBA0E07 <https://pgp.mit.edu/pks/lookup?op=vindex&search=0x1425F8CE5EBA0E07>`_

Testing
=======

To run the tests with the interpreter available as ``python``, use::

tox

Continuous testing runs on travis: https://travis-ci.org/sphinx-doc/sphinxcontrib-applehelp

Contributing
============

Expand Down
8 changes: 5 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ urls.Download = "https://pypi.org/project/sphinxcontrib-applehelp/"
urls.Homepage = "https://www.sphinx-doc.org/"
urls."Issue tracker" = "https://github.com/sphinx-doc/sphinx/issues"
license.text = "BSD-2-Clause"
requires-python = ">=3.8"
requires-python = ">=3.9"

# Classifiers list: https://pypi.org/classifiers/
classifiers = [
Expand All @@ -27,19 +27,21 @@ classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Framework :: Sphinx",
"Framework :: Sphinx :: Extension",
"Topic :: Documentation",
"Topic :: Documentation :: Sphinx",
"Topic :: Text Processing",
"Topic :: Utilities",
]
dependencies = []
dependencies = [
"Sphinx>=5",
]
dynamic = ["version"]

[project.optional-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tox]
minversion = 2.4.0
envlist =
py{38,39,310,311,312},
py{39,310,311,312,313},
flake8,
mypy
isolated_build = True
Expand Down

0 comments on commit 604e2cb

Please sign in to comment.