Skip to content

Commit 62f3314

Browse files
authored
Merge pull request #23 from adobe-apiplatform/v2
Push release 2.0rc1 to master
2 parents 046aca4 + b8c0215 commit 62f3314

File tree

3 files changed

+22
-9
lines changed

3 files changed

+22
-9
lines changed

.travis.yml

Lines changed: 17 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,21 @@
11
language: python
22
python:
3-
- 2.7
4-
- 3.4
5-
- 3.5
3+
- 2.7
4+
- 3.4
5+
- 3.5
66
install:
7-
- pip install --upgrade pip setuptools wheel
8-
- pip install -r requirements.txt
7+
- pip install --upgrade pip setuptools wheel
8+
- pip install -r requirements.txt
99
script:
10-
- python setup.py test
10+
- python setup.py test
11+
deploy:
12+
provider: pypi
13+
distributions: sdist bdist_wheel
14+
user: adobeDan
15+
password:
16+
secure: nqS9f74jOJZnZ7FqhwpChvP4MlslIF14StxxdYrMuKs0fh6Bcz8O5DROBiEEs9OvM3+cbPkmfkg7PKkZQx4UQTQzYCPKV85YegrQW2WRcwwW3ik6NB5AELphjx3RBMA61p827m7V4vHW67j70+ITDG1joKBNzj7XfQPNma4LtBAxNPsNP9sHaZsWAUAnBvDZ9m7s3mPp2x3t+f9klxaurW7V6NvrjB47r9ln5Ry2JWxHBPKBjJ4XgVVYVQF4HmyrOzszH6xYUVS1KY6S6RUeOl8u/PwSWh3/QH0TvNmVzuZgU/dZxF0JEJbFZvh6+tVNaCcCGYlF+bXkPKbeMEnnPPvaI1RHuUbplPhNWRjVSksAJsznbvYseSg/e7yGJ6ghpsVAySqamMzrpH+U2OJ09czxv3boo9zJm/WWwg069OYkKWyUpNdjgiz0mgYb4KfVak0qhVy3qtbxju4RdCRnxIM2TXF+G/nkUpgtoSFgydgVpMbU2hjj8nonPgesWthFs9KlZocW1epyGySUVvcOcp4KuSvxS3njmA0+knWkAnCvFv7ynCkx7V7CNZvMo49HSMxNGfEs+d12MGIbfqYpIa1van8m4ApOuZ8RhVQq0ZLxVyuORqIDrG1PO7Gg/FFn4objp7e850lBML5ruoMqTmr5FFNSSBXfO/3NQa7l9RM=
17+
on:
18+
tags: true
19+
python: "3.5"
20+
repo: adobe-apiplatform/umapi-client.py
21+
all_branches: true

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.0b3',
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)