diff --git a/.travis.yml b/.travis.yml index f77fae5..bf9a9df 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,12 +1,10 @@ language: python +dist: bionic + python: - "3.8" -before_install: - - pip uninstall -y urllib3 - - pip install urllib3==1.26.6 - jobs: include: - stage: pypi release diff --git a/appwrite/client.py b/appwrite/client.py index 22347da..61248fa 100644 --- a/appwrite/client.py +++ b/appwrite/client.py @@ -11,11 +11,11 @@ def __init__(self): self._endpoint = 'https://HOSTNAME/v1' self._global_headers = { 'content-type': '', - 'user-agent' : 'AppwritePythonSDK/2.0.1 (${os.uname().sysname}; ${os.uname().version}; ${os.uname().machine})', + 'user-agent' : 'AppwritePythonSDK/2.0.2 (${os.uname().sysname}; ${os.uname().version}; ${os.uname().machine})', 'x-sdk-name': 'Python', 'x-sdk-platform': 'server', 'x-sdk-language': 'python', - 'x-sdk-version': '2.0.1', + 'x-sdk-version': '2.0.2', 'X-Appwrite-Response-Format' : '1.0.0', } diff --git a/requirements.txt b/requirements.txt index c54ea61..077c95d 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1 +1 @@ -requests==2.29.0 \ No newline at end of file +requests==2.31.0 \ No newline at end of file diff --git a/setup.cfg b/setup.cfg index 224a779..0f94f37 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,2 +1,2 @@ [metadata] -description-file = README.md \ No newline at end of file +description_file = README.md \ No newline at end of file diff --git a/setup.py b/setup.py index 07c7ac7..67f7899 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ setuptools.setup( name = 'appwrite', packages = ['appwrite', 'appwrite/services'], - version = '2.0.1', + version = '2.0.2', 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', long_description = long_description, @@ -18,7 +18,7 @@ maintainer = 'Appwrite Team', maintainer_email = 'team@appwrite.io', url = 'https://appwrite.io/support', - download_url='https://github.com/appwrite/sdk-for-python/archive/2.0.1.tar.gz', + download_url='https://github.com/appwrite/sdk-for-python/archive/2.0.2.tar.gz', # keywords = ['SOME', 'MEANINGFULL', 'KEYWORDS'], install_requires=[ 'requests',