Skip to content

Commit b0b4128

Browse files
Merge pull request #67 from appwrite/dev
fix: ci failure
2 parents b9bf10e + 44f2d3e commit b0b4128

File tree

5 files changed

+6
-10
lines changed

5 files changed

+6
-10
lines changed

Diff for: .travis.yml

-4
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,6 @@ dist: bionic
55
python:
66
- "3.8"
77

8-
before_install:
9-
- pip uninstall -y urllib3
10-
- pip install urllib3==1.26.6
11-
128
jobs:
139
include:
1410
- stage: pypi release

Diff for: appwrite/client.py

+2-2
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

Diff for: requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
requests==2.29.0
1+
requests==2.31.0

Diff for: setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
[metadata]
2-
description-file = README.md
2+
description_file = README.md

Diff for: setup.py

+2-2
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)