Skip to content

Commit 1d24cbe

Browse files
committed
Drop Python 2 support
1 parent 54ba807 commit 1d24cbe

File tree

4 files changed

+7
-17
lines changed

4 files changed

+7
-17
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
.DS_Store
12
.idea/
23
.vscode/
34

README.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
vk_api [![PyPI](https://img.shields.io/pypi/v/vk_api.svg)](https://pypi.org/project/vk_api/) ![Python 2.7, 3.4, 3.5, 3.6, 3.7](https://img.shields.io/pypi/pyversions/vk_api.svg) [![Telegram Chat](https://img.shields.io/badge/-Telegram%20Chat-green?logo=telegram&color=27A7E5)](https://t.me/python273_vk_api)
1+
vk_api [![PyPI](https://img.shields.io/pypi/v/vk_api.svg)](https://pypi.org/project/vk_api/) ![Python 3.6, 3.7, 3.8](https://img.shields.io/pypi/pyversions/vk_api.svg) [![Telegram Chat](https://img.shields.io/badge/-Telegram%20Chat-green?logo=telegram&color=27A7E5)](https://t.me/python273_vk_api)
22
=================================================================================================================================================================================
33
**vk_api** – Python модуль для создания скриптов для социальной сети Вконтакте (vk.com API wrapper)
44

@@ -20,5 +20,4 @@ print(vk.wall.post(message='Hello world!'))
2020

2121
Установка
2222
------------
23-
$ pip install vk_api
2423
$ pip3 install vk_api

docs/index.rst

+2-9
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,14 @@
11
Документация vk_api
22
===================
33

4-
vk_api – Python модуль для написания скриптов для социальной сети Вконтакте
5-
(vk.com) (API wrapper)
4+
vk_api – Python модуль для создания скриптов для социальной сети Вконтакте (vk.com API wrapper)
65

76
`Установка через PIP
87
<https://pythonworld.ru/osnovy/pip.html>`_:
98

109
.. code-block:: shell-session
1110
12-
$ pip install --user vk_api
13-
14-
или
15-
16-
.. code-block:: shell-session
17-
18-
# pip install vk_api
11+
# pip3 install vk_api
1912
2013
Примеры по использованию библиотеки доступны на `GitHub <https://github.com/python273/vk_api/tree/master/examples>`_.
2114

setup.py

+3-6
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@
2424
author_email='[email protected]',
2525

2626
description=(
27-
u'Python модуль для написания скриптов для социальной сети '
28-
u'Вконтакте (vk.com) (API wrapper)'
27+
u'Python модуль для создания скриптов для социальной сети '
28+
u'Вконтакте (vk.com API wrapper)'
2929
),
3030
long_description=long_description,
3131
long_description_content_type='text/markdown',
@@ -48,13 +48,10 @@
4848
'License :: OSI Approved :: Apache Software License',
4949
'Operating System :: OS Independent',
5050
'Programming Language :: Python',
51-
'Programming Language :: Python :: 2',
52-
'Programming Language :: Python :: 2.7',
5351
'Programming Language :: Python :: 3',
54-
'Programming Language :: Python :: 3.4',
55-
'Programming Language :: Python :: 3.5',
5652
'Programming Language :: Python :: 3.6',
5753
'Programming Language :: Python :: 3.7',
54+
'Programming Language :: Python :: 3.8',
5855
'Programming Language :: Python :: Implementation :: PyPy',
5956
'Programming Language :: Python :: Implementation :: CPython',
6057
]

0 commit comments

Comments
 (0)