Skip to content

Commit 7dc1288

Browse files
authored
bump release (#1504)
* bump release * workaround for pip failures
1 parent bc10ca7 commit 7dc1288

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

f5-sdk-dist/scripts/construct_setups.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,11 @@
2626

2727
from collections import deque
2828
from collections import namedtuple
29-
from pip.req import parse_requirements as p_reqs
29+
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
3034

3135

3236
def construct_cfgs(**kargs):

f5/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414
#
15-
__version__ = '3.0.19'
15+
__version__ = '3.0.20'

0 commit comments

Comments
 (0)