Skip to content
Commits on Source (6)
language: python
language: generic
env:
global:
- PYTHON_VERSION=$TRAVIS_PYTHON_VERSION
- NUMPY_VERSION=stable
- MAIN_CMD='python setup.py'
- CONDA_DEPENDENCIES='sphinx pillow coveralls coverage pytest'
......@@ -27,23 +26,21 @@ matrix:
- BUILDMODE=ASTROPY
- PYTHON_VERSION=3.7
- os: osx
language: generic
env:
- BUILDMODE=ASTROPY
- PYTHON_VERSION=2.7
- os: osx
language: generic
env:
- BUILDMODE=ASTROPY
- PYTHON_VERSION=3.7
- sudo: required
language: python
services:
- docker
env: BUILDMODE=CIBUILDWHEEL
- os: osx
language: generic
env: BUILDMODE=CIBUILDWHEEL
install:
- source ci/travis-install.sh
script:
- source ci/travis-build.sh
- ci/travis-build.sh
# The aggdraw Library
## Version 1.3.11
- Force rebuild to fix freetype linking in OSX wheels
## Version 1.3.10
- Fix Draw.path docstring mentioning unused x/y coordinates
......
File mode changed from 100644 to 100755
......@@ -13,7 +13,19 @@ elif [ "${BUILDMODE}" = "CIBUILDWHEEL" ]; then
if [ $(uname) = "Darwin" ]; then
export PIP=pip2
fi
cibuildwheel --output-dir wheelhouse
if [ $(uname) = "Darwin" ]; then
# Re-do delocate with patched version that actually works for aggdraw
$PIP install -U git+https://github.com/natefoo/delocate.git@top-level-fix-squash
export PATH="$PATH:/Library/Frameworks/Python.framework/Versions/2.7/bin"
WHEELS=wheelhouse/*.whl
for w in $WHEELS
do
delocate-wheel -v $w
done
fi
if [[ $TRAVIS_TAG ]]; then
python -m pip install twine
python -m twine upload --skip-existing wheelhouse/*.whl
......@@ -22,4 +34,5 @@ elif [ "${BUILDMODE}" = "CIBUILDWHEEL" ]; then
python -m twine upload --skip-existing dist/*.tar.gz
fi
fi
fi
File mode changed from 100644 to 100755
aggdraw (1.3.11-1) unstable; urgency=medium
* New upstream release.
* Bump Standards-Version to 4.4.0, no changes.
* Set compat to 12.
-- Antonio Valentino <antonio.valentino@tiscali.it> Fri, 19 Jul 2019 05:38:25 +0000
aggdraw (1.3.10-1) unstable; urgency=medium
[ Bas Couwenberg ]
......
......@@ -4,7 +4,7 @@ Uploaders: Antonio Valentino <antonio.valentino@tiscali.it>
Section: python
Testsuite: autopkgtest-pkg-python
Priority: optional
Build-Depends: debhelper (>= 11),
Build-Depends: debhelper (>= 12),
dh-python,
python-all-dev,
python-setuptools,
......@@ -19,7 +19,7 @@ Build-Depends: debhelper (>= 11),
python3-pkgconfig,
python-pytest,
python3-pytest
Standards-Version: 4.3.0
Standards-Version: 4.4.0
Vcs-Browser: https://salsa.debian.org/debian-gis-team/aggdraw
Vcs-Git: https://salsa.debian.org/debian-gis-team/aggdraw.git
Homepage: https://github.com/pytroll/aggdraw
......
......@@ -24,7 +24,7 @@ try:
except ImportError:
from distutils.core import setup, Extension
VERSION = "1.3.10"
VERSION = "1.3.11"
SUMMARY = "High quality drawing interface for PIL."
......