Skip to content

Commit 6248683

Browse files
committed
Update files for building process
1 parent 87c584b commit 6248683

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ test:
2626
release: wheels_x64 cp_wheels_x64 wheels_i686 cp_wheels_i686 wheel
2727

2828
publish:
29-
@python -m twine upload dist/pendulum-$(PENDULUM_RELEASE)*
29+
@poetry publish --no-build
3030

3131
tar:
3232
python setup.py sdist --formats=gztar

build-wheels.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash
2-
PYTHON_VERSIONS="cp27-cp27m cp35-cp35m cp36-cp36m"
2+
PYTHON_VERSIONS="cp27-cp27m cp34-cp34m cp35-cp35m cp36-cp36m"
33

44
POETRY_PYTHON="cp36-cp36m"
55
POETRY_VENV="/opt/python/poetry"
@@ -32,7 +32,7 @@ for PYTHON in ${PYTHON_VERSIONS}; do
3232
. /opt/python/venv-${PYTHON}/bin/activate
3333
pip install pendulum==${RELEASE} --no-index --find-links /io/wheelhouse
3434
find ./io/tests | grep -E "(__pycache__|\.pyc$)" | xargs rm -rf
35-
pytest /io/tests
35+
pytest /io/tests -W ignore
3636
find ./io/tests | grep -E "(__pycache__|\.pyc$)" | xargs rm -rf
3737
deactivate
3838
done

0 commit comments

Comments
 (0)