Skip to content

Commit 19d43e8

Browse files
committed
Fix build files
1 parent abcdc92 commit 19d43e8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# http://www.opensource.org/licenses/MIT-license
66
# Copyright (c) 2015 Sébastien Eustace
77

8-
PENDULUM_RELEASE := $$(sed -n -E "s/VERSION = '(.+)'/\1/p" pendulum/version.py)
8+
PENDULUM_RELEASE := $$(sed -n -E "s/VERSION = \"(.+)\"/\1/p" pendulum/version.py)
99

1010
# lists all available targets
1111
list:

build-wheels.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ echo "Create Poetry's virtualenv"
88
/opt/python/${POETRY_PYTHON}/bin/virtualenv --python /opt/python/${POETRY_PYTHON}/bin/python ${POETRY_VENV}
99
${POETRY_VENV}/bin/pip install poetry --pre
1010

11-
RELEASE=$(sed -n "s/__version__ = '\(.*\)'/\1/p" /io/pendulum/__version__.py)
11+
RELEASE=$(sed -n "s/__version__ = \"\(.*\)\"/\1/p" /io/pendulum/__version__.py)
1212

1313
echo "Compile wheels"
1414
for PYTHON in ${PYTHON_VERSIONS}; do

0 commit comments

Comments
 (0)