Skip to content

Commit 16b003f

Browse files
committed
Update links to the docs
1 parent 8f4b4b0 commit 16b003f

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
max-parallel: 4
1414
matrix:
1515
os: [ubuntu-latest, windows-latest]
16-
python-version: [3.8, 3.9]
16+
python-version: ["3.8", "3.9", "3.10", "3.11"]
1717

1818
steps:
1919
- uses: actions/checkout@v3

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Examples
3030
========
3131

3232
Methods and arguments are the same as the JSON-RPC procedures described in the
33-
`official documentation <https://docs.kanboard.org/en/latest/api/index.html>`_.
33+
`official documentation <https://docs.kanboard.org/v1/api/>`_.
3434

3535
Python methods are dynamically mapped to the API procedures. **You must use named arguments.**
3636

@@ -101,5 +101,5 @@ to ``create_project`` can be made asynchronous by calling ``create_project_async
101101
project_id = loop.run_until_complete(call_within_function())
102102
103103
104-
See the `official API documentation <https://docs.kanboard.org/en/latest/api/index.html>`_ for the complete list of
104+
See the `official API documentation <https://docs.kanboard.org/v1/api/>`_ for the complete list of
105105
methods and arguments.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,11 +46,11 @@ def readme():
4646
'Natural Language :: English',
4747
'License :: OSI Approved :: MIT License',
4848
'Programming Language :: Python',
49-
'Programming Language :: Python :: 3.5',
5049
'Programming Language :: Python :: 3.6',
5150
'Programming Language :: Python :: 3.7',
5251
'Programming Language :: Python :: 3.8',
5352
'Programming Language :: Python :: 3.9',
5453
'Programming Language :: Python :: 3.10',
54+
'Programming Language :: Python :: 3.11',
5555
]
5656
)

0 commit comments

Comments
 (0)