From 8a86574394172a8221a95d9e2fcc229a26be2103 Mon Sep 17 00:00:00 2001 From: Alex Date: Wed, 28 Dec 2016 14:10:50 +0000 Subject: [PATCH] .devN release suffix must be preceded with a dot https://packaging.python.org/distributing/#standards-compliance-for-interoperability --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 506f3779b..ac79a0425 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,7 +5,7 @@ branches: only: - master - /^\d\.\d+$/ - - /^\d\.\d+\.\d+(rc\d+|dev\d+)?$/ + - /^\d\.\d+\.\d+(rc\d+|\.dev\d+)?$/ env: - TOXENV=py27 - TOXENV=jessie @@ -35,4 +35,4 @@ deploy: on: tags: true repo: scrapy/scrapy - condition: "$TOXENV == py27 && $TRAVIS_TAG =~ ^[0-9]+[.][0-9]+[.][0-9]+(rc[0-9]+|dev[0-9]+)?$" + condition: "$TOXENV == py27 && $TRAVIS_TAG =~ ^[0-9]+[.][0-9]+[.][0-9]+(rc[0-9]+|[.]dev[0-9]+)?$"