Skip to content

Commit a978cd3

Browse files
authored
wagon 1.0.1: Declare a dummy venv extras-require (#154)
Cloudify CLI 7.0.x, which is widely-deployed, happens to require `wagon[venv]>=0.11.2`. In order not to break those installs, let's declare a dummy extra here, so that the CLI can be installed correctly.
1 parent 17e55c9 commit a978cd3

2 files changed

Lines changed: 6 additions & 1 deletion

File tree

CHANGES

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 1.0.1
2+
3+
* Declare a dummy `venv` extras-require for compatibility with widely-deployed Cloudify CLI 7.0.2
4+
15
## 1.0.0
26

37
* `distro` package as optional dependency.

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ def read(*parts):
2727

2828
setup(
2929
name='wagon',
30-
version='1.0.0',
30+
version='1.0.1',
3131
url='https://github.com/cloudify-cosmo/wagon',
3232
author='Cloudify',
3333
author_email='cosmo-admin@cloudify.co',
@@ -45,6 +45,7 @@ def read(*parts):
4545
],
4646
extras_require={
4747
'dist': ['distro>=1.7.0'],
48+
'venv': [],
4849
},
4950
python_requires='>=3.4.0',
5051
classifiers=[

0 commit comments

Comments
 (0)