Skip to content

Commit 8809bbc

Browse files
committed
update python version
1 parent e595e3d commit 8809bbc

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

appwrite/client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ def __init__(self):
1111
self._endpoint = 'https://HOSTNAME/v1'
1212
self._global_headers = {
1313
'content-type': '',
14-
'user-agent' : 'AppwritePythonSDK/2.0.1 (${os.uname().sysname}; ${os.uname().version}; ${os.uname().machine})',
14+
'user-agent' : 'AppwritePythonSDK/2.0.2 (${os.uname().sysname}; ${os.uname().version}; ${os.uname().machine})',
1515
'x-sdk-name': 'Python',
1616
'x-sdk-platform': 'server',
1717
'x-sdk-language': 'python',
18-
'x-sdk-version': '2.0.1',
18+
'x-sdk-version': '2.0.2',
1919
'X-Appwrite-Response-Format' : '1.0.0',
2020
}
2121

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
setuptools.setup(
99
name = 'appwrite',
1010
packages = ['appwrite', 'appwrite/services'],
11-
version = '2.0.1',
11+
version = '2.0.2',
1212
license='BSD-3-Clause',
1313
description = 'Appwrite is an open-source self-hosted backend server that abstract and simplify complex and repetitive development tasks behind a very simple REST API',
1414
long_description = long_description,
@@ -18,7 +18,7 @@
1818
maintainer = 'Appwrite Team',
1919
maintainer_email = '[email protected]',
2020
url = 'https://appwrite.io/support',
21-
download_url='https://github.com/appwrite/sdk-for-python/archive/2.0.1.tar.gz',
21+
download_url='https://github.com/appwrite/sdk-for-python/archive/2.0.2.tar.gz',
2222
# keywords = ['SOME', 'MEANINGFULL', 'KEYWORDS'],
2323
install_requires=[
2424
'requests',

0 commit comments

Comments
 (0)