Skip to content

Commit 9a371e8

Browse files
authored
Bump PyYaml to 5.3.1 and replace pycrypto 2.6.1 with pycryptodome 3.9.8 (#378)
1 parent 86938d7 commit 9a371e8

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ commands:
220220
command: virtualenv env
221221
- run:
222222
name: install tox
223-
command: pip install --user pygithub pyyaml==3.10
223+
command: pip install --user pygithub pyyaml>=5.3.1,<5.4
224224
- run:
225225
name: upgrade setuptools
226226
command: pip install --upgrade setuptools

CHANGELOG.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
3.2.20: Bump PyYaml to 5.3.1 and replace pycrypto 2.6.1 with pycryptodome 3.9.8
12
3.2.19: Fix issues with windows password decrypt
23
3.2.18: Fix issue in no networks.
34
3.2.17: Support no networks.

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
setup(
2222
name='cloudify-openstack-plugin',
23-
version='3.2.19',
23+
version='3.2.20',
2424
author='Cloudify',
2525
author_email='[email protected]',
2626
license='LICENSE',
@@ -29,5 +29,5 @@
2929
install_requires=['cloudify-common>=4.4',
3030
'openstacksdk==0.39.0',
3131
'IPy==0.81',
32-
'pycrypto==2.6.1'],
32+
'pycryptodome>=3.9.8,<3.10'],
3333
test_requires=['mock', 'requests-mock'])

test-requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ pylint
1212
git+https://github.com/cloudify-cosmo/cloudify-common@master#egg=cloudify-common[dispatcher]==master
1313
git+https://github.com/cloudify-cosmo/cloudify-cli@master#egg=cloudify-cli==master
1414
pytest==4.6.3
15-
pyyaml==3.12
15+
pyyaml>=5.3.1,<5.4

0 commit comments

Comments
 (0)