From 22f69e4ced0694f6c443b1fe61ab60d7b7433bc0 Mon Sep 17 00:00:00 2001 From: Tommy <10076072+tommyod@users.noreply.github.com> Date: Sun, 2 Sep 2018 22:40:49 +0200 Subject: [PATCH] Added a repo using cibuildwheel and fixed some spelling (#92) * Added KDEpy and fixed some spelling * Reversed spelling, added repo to README * Fixing single 'progams' typo in README --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 98c828b6..113b9384 100644 --- a/README.md +++ b/README.md @@ -98,7 +98,7 @@ A more detailed description of the options, the allowed values, and some example ### Linux builds on Docker Linux wheels are built in the [`manylinux1` docker images](https://github.com/pypa/manylinux) to provide binary compatible wheels on Linux, according to [PEP 513](https://www.python.org/dev/peps/pep-0513/). Because of this, when building with `cibuildwheel` on Linux, a few things should be taken into account: -- Progams and libraries cannot be installed on the Travis CI Ubuntu host with `apt-get`, but can be installed inside of the Docker image using `yum` or manually. The same goes for environment variables that are potentially needed to customize the wheel building. `cibuildwheel` supports this by providing the `CIBW_ENVIRONMENT` and `CIBW_BEFORE_BUILD` options to setup the build environment inside the running Docker image. See [below](#options) for details on these options. +- Programs and libraries cannot be installed on the Travis CI Ubuntu host with `apt-get`, but can be installed inside of the Docker image using `yum` or manually. The same goes for environment variables that are potentially needed to customize the wheel building. `cibuildwheel` supports this by providing the `CIBW_ENVIRONMENT` and `CIBW_BEFORE_BUILD` options to setup the build environment inside the running Docker image. See [below](#options) for details on these options. - The project directory is mounted in the running Docker instance as `/project`, the output directory for the wheels as `/output`. In general, this is handled transparently by `cibuildwheel`. For a more finegrained level of control however, the root of the host file system is mounted as `/host`, allowing for example to access shared files, caches, etc. on the host file system. - Alternative dockers images can be specified with the `CIBW_MANYLINUX1_X86_64_IMAGE` and `CIBW_MANYLINUX1_I686_IMAGE` options to allow for a custom, preconfigured build environment for the Linux builds. See [below](#options) for more details. @@ -344,6 +344,7 @@ Here are some repos that use cibuildwheel. - [Parselmouth](https://github.com/YannickJadoul/Parselmouth) - [python-admesh](https://github.com/admesh/python-admesh) - [pybase64](https://github.com/mayeut/pybase64) +- [KDEpy](https://github.com/tommyod/KDEpy) > Add repo here! Send a PR.