Merge pull request #2470 from chekunkov/patch-1

[MRG+1] .devN release suffix must be preceded with a dot
This commit is contained in:
Paul Tremberth 2017-01-24 10:33:22 +01:00 committed by GitHub
commit 4620d2f425
1 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@ branches:
only:
- master
- /^\d\.\d+$/
- /^\d\.\d+\.\d+(rc\d+|dev\d+)?$/
- /^\d\.\d+\.\d+(rc\d+|\.dev\d+)?$/
matrix:
include:
- python: 2.7
@ -42,4 +42,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]+)?$"