Skip to content

Commit ed13d16

Browse files
authored
Merge pull request #12 from icgood/fix
Fix escaping on deployment conditions
2 parents 191f2ac + 6183255 commit ed13d16

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,12 @@ deploy:
2424
local_dir: doc/build/html
2525
on:
2626
tags: true
27-
condition: $TRAVIS_JOB_NUMBER =~ \\.1$
27+
condition: $TRAVIS_JOB_NUMBER =~ \.1$
2828
edge: true
2929
- provider: pypi
3030
distributions: sdist bdist_wheel
3131
skip_existing: true
3232
on:
3333
tags: true
34-
condition: $TRAVIS_JOB_NUMBER =~ \\.1$
34+
condition: $TRAVIS_JOB_NUMBER =~ \.1$
3535
edge: true

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
license = f.read()
2929

3030
setup(name='proxy-protocol',
31-
version='0.5.2',
31+
version='0.5.3',
3232
author='Ian Good',
3333
author_email='ian@icgood.net',
3434
description='PROXY protocol library with asyncio server implementation',

0 commit comments

Comments
 (0)