From e1cc9ec202901676f1180322bb5330fbe92ee245 Mon Sep 17 00:00:00 2001 From: Jan Brasna <1784648+janbrasna@users.noreply.github.com> Date: Wed, 30 Apr 2025 17:04:30 +0200 Subject: [PATCH 1/4] Update README link to https --- README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.rst b/README.rst index 2b221d777..dd01fe3a2 100644 --- a/README.rst +++ b/README.rst @@ -62,7 +62,7 @@ to large feature requests and changes. Before you contribute (either by opening an issue or filing a pull request), please `read the contribution guidelines`_. -.. _read the contribution guidelines: http://python-hyper.org/en/latest/contributing.html +.. _read the contribution guidelines: https://python-hyper.org/en/latest/contributing.html License ======= From e3a60008d5d81ff935c1b9b70e6b6124cd5e2500 Mon Sep 17 00:00:00 2001 From: Jan Brasna <1784648+janbrasna@users.noreply.github.com> Date: Wed, 30 Apr 2025 17:20:03 +0200 Subject: [PATCH 2/4] Create RTD config --- .readthedocs.yaml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .readthedocs.yaml diff --git a/.readthedocs.yaml b/.readthedocs.yaml new file mode 100644 index 000000000..45b3f5527 --- /dev/null +++ b/.readthedocs.yaml @@ -0,0 +1,10 @@ +# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details +version: 2 + +build: + os: ubuntu-22.04 + tools: + python: "3.9" + +sphinx: + configuration: docs/source/conf.py From abee6c6e2846a8e1a1f541f29dd1ad68c2539d79 Mon Sep 17 00:00:00 2001 From: Thomas Kriechbaumer Date: Wed, 30 Apr 2025 22:30:45 +0200 Subject: [PATCH 3/4] Update .readthedocs.yaml --- .readthedocs.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.readthedocs.yaml b/.readthedocs.yaml index 45b3f5527..3480c6fc3 100644 --- a/.readthedocs.yaml +++ b/.readthedocs.yaml @@ -4,7 +4,7 @@ version: 2 build: os: ubuntu-22.04 tools: - python: "3.9" + python: "3.13" sphinx: configuration: docs/source/conf.py From e1c008df4307b1db7ab524a98751dc059d352785 Mon Sep 17 00:00:00 2001 From: Thomas Kriechbaumer Date: Wed, 30 Apr 2025 22:47:24 +0200 Subject: [PATCH 4/4] exclude RDT from sdist --- MANIFEST.in | 1 + 1 file changed, 1 insertion(+) diff --git a/MANIFEST.in b/MANIFEST.in index 25d6814dc..ff2f15801 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -11,3 +11,4 @@ recursive-include examples *.py *.crt *.key *.pem *.csr include README.rst LICENSE CHANGELOG.rst pyproject.toml global-exclude *.pyc *.pyo *.swo *.swp *.map *.yml *.DS_Store +exclude .readthedocs.yaml