Skip to content

Commit 7f9c35a

Browse files
committed
Fix docs
1 parent c5b1c31 commit 7f9c35a

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

.readthedocs.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,14 @@
33
version: 2
44

55
build:
6-
os: ubuntu-20.04
6+
os: ubuntu-22.04
77
tools:
8-
python: "3.10"
8+
python: "3.12"
99

1010
sphinx:
1111
configuration: docs/conf.py
1212

1313
python:
1414
install:
15+
- requirements: requirements.txt
1516
- requirements: docs/requirements.txt

docs/exceptions.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Исключения
1+
Exceptions
22
==========
33

44
.. automodule:: vk_api.exceptions

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
beautifulsoup4
2-
requests
2+
requests>=2.20.0,<3.0.0
33
websocket-client

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
download_url=f'https://github.com/python273/vk_api/archive/v{version}.zip',
3232
license='Apache License, Version 2.0, see LICENSE file',
3333
packages=['vk_api', 'jconfig'],
34-
install_requires=['requests'],
34+
install_requires=['requests>=2.20.0,<3.0.0'],
3535
extras_require={
3636
'vkstreaming': ['websocket-client'],
3737
'vkaudio': ['beautifulsoup4'],

0 commit comments

Comments
 (0)