Skip to content

Commit

Permalink
bump release (#1504)
Browse files Browse the repository at this point in the history
* bump release

* workaround for pip failures
  • Loading branch information
caphrim007 committed Aug 22, 2018
1 parent bc10ca7 commit 7dc1288
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion f5-sdk-dist/scripts/construct_setups.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,11 @@

from collections import deque
from collections import namedtuple
from pip.req import parse_requirements as p_reqs

try: # for pip >= 10
from pip._internal.req import parse_requirements as p_reqs
except ImportError: # for pip <= 9.0.3
from pip.req import parse_requirements as p_reqs


def construct_cfgs(**kargs):
Expand Down
2 changes: 1 addition & 1 deletion f5/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
__version__ = '3.0.19'
__version__ = '3.0.20'

0 comments on commit 7dc1288

Please sign in to comment.