Skip to content

Commit 4f4dc55

Browse files
committed
Fix modules
1 parent 99aa333 commit 4f4dc55

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

appwrite/client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ def __init__(self):
1313
self._endpoint = 'https://cloud.appwrite.io/v1'
1414
self._global_headers = {
1515
'content-type': '',
16-
'user-agent' : 'AppwritePythonSDK/5.0.0 (${os.uname().sysname}; ${os.uname().version}; ${os.uname().machine})',
16+
'user-agent' : 'AppwritePythonSDK/5.0.1 (${os.uname().sysname}; ${os.uname().version}; ${os.uname().machine})',
1717
'x-sdk-name': 'Python',
1818
'x-sdk-platform': 'server',
1919
'x-sdk-language': 'python',
20-
'x-sdk-version': '5.0.0',
20+
'x-sdk-version': '5.0.1',
2121
'X-Appwrite-Response-Format' : '1.5.0',
2222
}
2323

setup.py

Lines changed: 4 additions & 5 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 = '5.0.0',
11+
version = '5.0.1',
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,11 +18,10 @@
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/5.0.0.tar.gz',
22-
# keywords = ['SOME', 'MEANINGFULL', 'KEYWORDS'],
21+
download_url='https://github.com/appwrite/sdk-for-python/archive/5.0.1.tar.gz',
2322
install_requires=[
24-
'requests',
25-
],
23+
'requests',
24+
],
2625
classifiers=[
2726
'Development Status :: 5 - Production/Stable',
2827
'Intended Audience :: Developers',

0 commit comments

Comments
 (0)