Skip to content

Commit b8c0215

Browse files
committed
Tweak setup.py info, docs. Ready for rc1.
1 parent be3c5bc commit b8c0215

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

docs/usage-instructions-v2.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -282,6 +282,7 @@ actions = (user1, user2, user3, user4)
282282
errors = [info for action in actions for info in action.execution_errors()]
283283
```
284284

285-
Each entry in errors would then be a dictionary giving
285+
Each entry in `errors` would then be a dictionary giving
286286
the command that failed, the target user it failed on,
287287
and server information about the reason for the failure.
288+

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
from setuptools import setup, find_packages
2222

2323
setup(name='umapi-client',
24-
version='2.0b4',
24+
version='2.0rc1',
2525
description='Client for the User Management API (UMAPI) from Adobe - see https://adobe.ly/2h1pHgV',
2626
long_description=('The User Management API (aka the UMAPI) is an Adobe-hosted network service '
2727
'which provides Adobe Enterprise customers the ability to manage their users. This '
@@ -31,6 +31,7 @@
3131
classifiers=[
3232
'Development Status :: 5 - Production/Stable',
3333
'Programming Language :: Python :: 2.7',
34+
'Programming Language :: Python :: 3.4',
3435
'Programming Language :: Python :: 3.5',
3536
'License :: OSI Approved :: MIT License',
3637
'Intended Audience :: Developers',
@@ -52,7 +53,7 @@
5253
'pytest-runner',
5354
],
5455
tests_require=[
55-
'pytest',
56+
'pytest>=3.0.5',
5657
'mock',
5758
'PyYAML',
5859
],

0 commit comments

Comments
 (0)