From f74146716ccd02d372e07dbfa28ef88d06a0040a Mon Sep 17 00:00:00 2001 From: Lex Neva Date: Sat, 13 Jan 2018 20:11:36 -0500 Subject: [PATCH] relax requirements for pre-release tag names --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 6c360bfe7..4e8ddd04d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,7 +13,7 @@ matrix: - python: 2.7 sudo: required env: BUILD=true - if: tag =~ ^v + if: tag is present cache: pip install: - | @@ -91,4 +91,4 @@ deploy: on: tag: true all_branches: true - condition: "$TRAVIS_TAG =~ ^v[0-9.]+-pre" + condition: '! "$TRAVIS_TAG" =~ ^v[0-9.]+$'