From e91b1a2198f7197e9830c64334d18ba5ee9d08dc Mon Sep 17 00:00:00 2001 From: Michael Diamant Date: Wed, 4 May 2022 13:33:23 -0400 Subject: [PATCH 1/2] Fix docs by providing root requirements.txt (#332) --- .readthedocs.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.readthedocs.yaml b/.readthedocs.yaml index 3dd09717..2803cb2e 100644 --- a/.readthedocs.yaml +++ b/.readthedocs.yaml @@ -12,4 +12,5 @@ sphinx: python: install: - - requirements: docs/requirements.txt + - requirements: requirements.txt + - requirements: docs/requirements.txt From 19c13b3b51a3851d59c135cf8fb2c2e89e3288ca Mon Sep 17 00:00:00 2001 From: John Lee Date: Wed, 4 May 2022 14:40:51 -0400 Subject: [PATCH 2/2] Bumped version to v1.13.1 --- CHANGELOG.md | 4 ++++ setup.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index db32fee4..4f230ecf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +# v1.13.1 +## Fixed +- Fix readthedocs by providing root requirements.txt (#332) + # v1.13.0 ## Added - Adding condition for allowing rcv to be none if close to is set (#317) diff --git a/setup.py b/setup.py index 4aef8155..887ec986 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ description="Algorand SDK in Python", author="Algorand", author_email="pypiservice@algorand.com", - version="v1.13.0", + version="v1.13.1", long_description=long_description, long_description_content_type="text/markdown", license="MIT",