1
0
Fork 0
mirror of synced 2024-06-26 10:10:57 +12:00

Updated Python SDK version

This commit is contained in:
Eldad Fux 2020-07-26 10:17:03 +03:00
parent 9f6080ae7b
commit bcfbdd65cb
3 changed files with 4 additions and 4 deletions

View file

@ -170,7 +170,7 @@ return [
[
'key' => 'python',
'name' => 'Python',
'version' => '0.0.5',
'version' => '0.0.6',
'url' => 'https://github.com/appwrite/sdk-for-python',
'enabled' => true,
'beta' => true,

View file

@ -7,7 +7,7 @@ class Client:
self._endpoint = 'https://appwrite.io/v1'
self._global_headers = {
'content-type': '',
'x-sdk-version': 'appwrite:python:0.0.5',
'x-sdk-version': 'appwrite:python:0.0.6',
}
def set_self_signed(self, status=True):

View file

@ -3,7 +3,7 @@ import setuptools
setuptools.setup(
name = 'appwrite',
packages = ['appwrite', 'appwrite/services'],
version = '0.0.5',
version = '0.0.6',
license='BSD-3-Clause',
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',
author = 'Appwrite Team',
@ -11,7 +11,7 @@ setuptools.setup(
maintainer = 'Appwrite Team',
maintainer_email = 'team@localhost.test',
url = 'https://appwrite.io/support',
download_url='https://github.com/appwrite/sdk-for-python/archive/0.0.5.tar.gz',
download_url='https://github.com/appwrite/sdk-for-python/archive/0.0.6.tar.gz',
# keywords = ['SOME', 'MEANINGFULL', 'KEYWORDS'],
install_requires=[
'requests',