.devN release suffix must be preceded with a dot

https://packaging.python.org/distributing/#standards-compliance-for-interoperability
This commit is contained in:
Alex 2016-12-28 14:10:50 +00:00 committed by Alexander Chekunkov
parent cc06b6b1f6
commit 8a86574394
1 changed files with 2 additions and 2 deletions

View File

@ -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]+)?$"