diff --git a/.readthedocs.yaml b/.readthedocs.yaml new file mode 100644 index 0000000..90193a5 --- /dev/null +++ b/.readthedocs.yaml @@ -0,0 +1,14 @@ +# https://docs.readthedocs.io/en/stable/config-file/v2.html +version: 2 +build: + os: ubuntu-22.04 + tools: + python: '3.12' +sphinx: + configuration: docs/conf.py +python: + install: + - method: pip + path: . + extra_requirements: + - docs diff --git a/CHANGES.rst b/CHANGES.rst index 2ee221f..04b3e95 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,7 +1,7 @@ Changes ------- -Unreleased (2022-11-14) +Unreleased (2024-11-14) ^^^^^^^^^^^^^^^^^^^^^^^ - Drop support for Python 3.7, and 3.8. diff --git a/MANIFEST.in b/MANIFEST.in index 5511fc5..a996c84 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -12,6 +12,6 @@ include CHANGES.rst include setup.cfg pyproject.toml include .coveragerc .flake8 -include tox.ini rtd.txt +include tox.ini rtd.txt .readthedocs.yaml recursive-exclude * __pycache__ *.py[cod] diff --git a/setup.cfg b/setup.cfg index 47d9ea4..99926ae 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = pyramid_tm -version = 2.5 +version = 2.6 description = A package which allows Pyramid requests to join the active transaction long_description = file: README.rst, CHANGES.txt long_description_content_type = text/x-rst