We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bc10ca7 commit 7dc1288Copy full SHA for 7dc1288
f5-sdk-dist/scripts/construct_setups.py
@@ -26,7 +26,11 @@
26
27
from collections import deque
28
from collections import namedtuple
29
-from pip.req import parse_requirements as p_reqs
+
30
+try: # for pip >= 10
31
+ from pip._internal.req import parse_requirements as p_reqs
32
+except ImportError: # for pip <= 9.0.3
33
+ from pip.req import parse_requirements as p_reqs
34
35
36
def construct_cfgs(**kargs):
f5/__init__.py
@@ -12,4 +12,4 @@
12
# See the License for the specific language governing permissions and
13
# limitations under the License.
14
#
15
-__version__ = '3.0.19'
+__version__ = '3.0.20'
0 commit comments