diff options
author | IWASE Yusuke <iwase.yusuke0@gmail.com> | 2016-11-15 11:23:14 +0900 |
---|---|---|
committer | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2016-11-15 20:58:06 +0900 |
commit | 03f77e7279d3e7f4c0c581f32cb99322e65195a6 (patch) | |
tree | f546bce82233ad7d253ff323c84a7e974e0e694e /tools/optional-requires | |
parent | 1af384fa17e58d52a5b1826fa3f2ce3a5b1b260a (diff) |
pip: Separate test-requires
Currently, in addition to "requirements for tests", test-requires
includes "optional requirements".
This makes it unclear to identify which packages are surely required
to use optional features (e.g., OF-Config, NETCONF, BGP speaker) and
causes the redundant installation when building Docker images.
This patch separates test-requires into two files("test requirements"
and "optional requirements").
Also, this patch reverts the version fixation for some packages.
Signed-off-by: IWASE Yusuke <iwase.yusuke0@gmail.com>
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Diffstat (limited to 'tools/optional-requires')
-rw-r--r-- | tools/optional-requires | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/optional-requires b/tools/optional-requires new file mode 100644 index 00000000..a17b1752 --- /dev/null +++ b/tools/optional-requires @@ -0,0 +1,4 @@ +lxml # OF-Config +ncclient # OF-Config +cryptography!=1.5.2 # Required by paramiko +paramiko # NETCONF, BGP speaker (SSH console) |