Skip to content

Commit b77555c

Browse files
committed
Try to fix building docs
1 parent 3ea6ed7 commit b77555c

File tree

5 files changed

+27
-7
lines changed

5 files changed

+27
-7
lines changed

.readthedocs.yaml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
version: 2
2+
3+
build:
4+
os: ubuntu-22.04
5+
tools:
6+
python: "3.9"
7+
8+
sphinx:
9+
configuration: docs/conf.py
10+
11+
python:
12+
install:
13+
- requirements: docs/requirements.txt
14+
- method: pip
15+
path: .

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
We follow [Semantic Versions](https://semver.org/).
44

5+
## Version 1.1.0
6+
7+
- Refactoring and support for Python from 3.8 to 3.14
8+
- Update dependencies
9+
- Fix docs build
10+
511
## Version 1.0.2
612

713
- Add `delegate_vesting_shares` method

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ Basic read query example:
5959
from viz import Client
6060
from pprint import pprint
6161

62-
node = 'wss://node.viz.cx/ws'
62+
node = 'https://api.viz.world/'
6363

6464
viz = Client(node=node)
6565
pprint(viz.info())

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ def _get_project_meta():
5757
# Used to write beautiful docstrings:
5858
"sphinx.ext.napoleon",
5959
# Used to include .md files:
60-
"m2r",
60+
"m2r2",
6161
# Auto-generate API documentation
6262
"autoapi.extension",
6363
]

docs/requirements.txt

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
# This file is used to setup env
22
# to generate documentation.
33

4-
sphinx==2.4.4
5-
sphinx-autoapi==1.3.0
6-
recommonmark==0.6.0
7-
m2r==0.2.1
8-
tomlkit==0.5.8
4+
sphinx>=4.0,<7.0
5+
sphinx-autoapi>=1.8.0
6+
m2r2>=0.3.2
7+
tomlkit>=0.11.0

0 commit comments

Comments
 (0)