Skip to content

Commit 0861a65

Browse files
author
Rémy HUBSCHER
committed
Preparing release 10.4.0
1 parent accae0b commit 0861a65

File tree

2 files changed

+40
-40
lines changed

2 files changed

+40
-40
lines changed

CHANGELOG.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,11 @@ CHANGELOG
44
This document describes changes between each past release.
55

66

7-
10.4.0 (unreleased)
7+
10.4.0 (2019-05-09)
88
===================
99

1010
- Add support for Bearer tokens in the CLI utilities.
11+
- Use black for code formatting.
1112

1213

1314
10.3.0 (2019-03-07)

setup.py

Lines changed: 38 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -5,52 +5,51 @@
55

66
here = os.path.abspath(os.path.dirname(__file__))
77

8-
with codecs.open(os.path.join(here, 'README.rst'), encoding='utf-8') as f:
8+
with codecs.open(os.path.join(here, "README.rst"), encoding="utf-8") as f:
99
README = f.read()
1010

11-
REQUIREMENTS = [
12-
'requests>=2.8.1',
13-
'unidecode',
14-
]
11+
REQUIREMENTS = ["requests>=2.8.1", "unidecode"]
1512

1613

1714
if sys.version_info < (2, 7, 9):
1815
# For secure SSL connexion with Python 2.7 (InsecurePlatformWarning)
19-
REQUIREMENTS.append('PyOpenSSL')
20-
REQUIREMENTS.append('ndg-httpsclient')
21-
REQUIREMENTS.append('pyasn1')
16+
REQUIREMENTS.append("PyOpenSSL")
17+
REQUIREMENTS.append("ndg-httpsclient")
18+
REQUIREMENTS.append("pyasn1")
2219

2320
test_requirements = [
24-
'pytest',
25-
'pytest-cache',
26-
'pytest-cov',
27-
'pytest-sugar',
28-
'pytest-xdist',
29-
'kinto',
30-
'unidecode',
21+
"pytest",
22+
"pytest-cache",
23+
"pytest-cov",
24+
"pytest-sugar",
25+
"pytest-xdist",
26+
"kinto",
27+
"unidecode",
3128
]
3229

33-
setup(name='kinto-http',
34-
version='10.4.0.dev0',
35-
description='Kinto client',
36-
long_description=README,
37-
license='Apache License (2.0)',
38-
classifiers=[
39-
"Programming Language :: Python",
40-
"Programming Language :: Python :: 3",
41-
"Programming Language :: Python :: 3.5",
42-
"Programming Language :: Python :: 3.6",
43-
"Programming Language :: Python :: Implementation :: CPython",
44-
"Topic :: Internet :: WWW/HTTP",
45-
"License :: OSI Approved :: Apache Software License"
46-
],
47-
keywords="web services",
48-
author='Mozilla Services',
49-
author_email='[email protected]',
50-
url='https://github.com/Kinto/kinto-http.py/',
51-
packages=find_packages(),
52-
include_package_data=True,
53-
zip_safe=False,
54-
install_requires=REQUIREMENTS,
55-
test_suite='kinto_http.tests',
56-
tests_require=test_requirements)
30+
setup(
31+
name="kinto-http",
32+
version="10.4.0",
33+
description="Kinto client",
34+
long_description=README,
35+
license="Apache License (2.0)",
36+
classifiers=[
37+
"Programming Language :: Python",
38+
"Programming Language :: Python :: 3",
39+
"Programming Language :: Python :: 3.5",
40+
"Programming Language :: Python :: 3.6",
41+
"Programming Language :: Python :: Implementation :: CPython",
42+
"Topic :: Internet :: WWW/HTTP",
43+
"License :: OSI Approved :: Apache Software License",
44+
],
45+
keywords="web services",
46+
author="Mozilla Services",
47+
author_email="[email protected]",
48+
url="https://github.com/Kinto/kinto-http.py/",
49+
packages=find_packages(),
50+
include_package_data=True,
51+
zip_safe=False,
52+
install_requires=REQUIREMENTS,
53+
test_suite="kinto_http.tests",
54+
tests_require=test_requirements,
55+
)

0 commit comments

Comments
 (0)