
- serializer.py: improved serialization - manager.py: Managers are now serializable - command.py, shell.py: improved command shell by using the 'tabulate' module - service.py: listManagers, startManager, stopManager and getManagerStatus methods now use the Managers serialization - requirements.txt, test-requirements.txt: 'tabulate' module dependence added - test_synergy.py, test_manager_abstract.py: updated unit tests - setup.cfg: changed entry points Change-Id: I657af749aa3fcb32c27b516c2b9f836c5ba0c690
19 lines
504 B
Plaintext
19 lines
504 B
Plaintext
# The order of packages is significant, because pip processes them in the order
|
|
# of appearance. Changing the order has an impact on the overall integration
|
|
# process, which may cause wedges in the gate later.
|
|
|
|
pbr
|
|
|
|
# Trying to fix the oslo dependencies mess (vincent).
|
|
amqp<2.0.0,>=1.0.0
|
|
oslo.middleware<3.5.0,>=3.0.0
|
|
oslo.concurrency<3.3.0,>=3.0.0
|
|
oslo.service<1.3.0,>=1.0.0
|
|
oslo.log<2.3.0,>=2.0.0
|
|
|
|
eventlet
|
|
oslo.config>=2.4.0,<3.0.0
|
|
oslo.messaging>=2.5.0,<3.0.0
|
|
python-dateutil
|
|
tabulate>=0.7.2,<0.8.0
|