From 888c6cb3241ff0e5483897f15e58b0232f32b120 Mon Sep 17 00:00:00 2001 From: Alex Clark Date: Wed, 1 Jul 2015 19:26:49 -0400 Subject: [PATCH] Update --- README.rst | 33 ++++++++++++++++++++------------- 1 file changed, 20 insertions(+), 13 deletions(-) diff --git a/README.rst b/README.rst index 924134a19..0bcb2f565 100644 --- a/README.rst +++ b/README.rst @@ -1,28 +1,35 @@ Pillow OS X Wheel Builder ========================= -This repository builds the most recent tagged version of the Pillow repository:: +This repository creates wheels for tagged versions of Pillow:: git submodule init git submodule update git add Pillow - git commit -a -m "Build wheels" - -To build a specific version, unset ``LATEST_TAG`` in the ``.travis.yml`` file and update the Pillow submodule:: - cd Pillow - git pull && git checkout DESIRED_TAG + git checkout cd .. - git add Pillow - git commit + git commit -a -m " wheels" + git push -Notes + +Numpy ----- -- Check minimum numpy versions to build against in ``.travis.yml`` file. Build against the earliest numpy that Pillow is compatible with; see `forward, backward numpy compatibility `_ +Check minimum numpy versions to build against in ``.travis.yml`` file. Build against the earliest numpy that Pillow is compatible with; see `forward, backward numpy compatibility `_ -- Wheels are uploaded to a `rackspace container `_. Credentials for this container are encrypted to this specific repo in the ``.travis.yml`` file so the upload won't work from another repository. +Wheels +------ -- Download wheels with ``wget -m -A 'Pillow-*' http://cdf58691c5cf45771290-6a3b6a0f5f6ab91aadc447b2a897dd9a.r50.cf2.rackcdn.com/`` +Wheels are uploaded to a `rackspace container `_. Credentials for this container are encrypted to this specific repo in the ``.travis.yml`` file so the upload won't work from another repository. -- Upload to PyPI with ``twine upload Pillow-*`` +PyPI +~~~~ + +Download wheels with:: + + wget -m -A 'Pillow-*' http://cdf58691c5cf45771290-6a3b6a0f5f6ab91aadc447b2a897dd9a.r50.cf2.rackcdn.com/ + +Upload to PyPI with:: + + twine upload Pillow-*