You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Stop testing on Travis CI.
References to Travis CI are removed from docs.
Travis CI specifics are kept as-is in cibuildwheel itself (mostly logging stuff).
Python wheels are great. Building them across **Mac, Linux, Windows**, on **multiple versions of Python**, is not.
17
16
18
-
`cibuildwheel` is here to help. `cibuildwheel` runs on your CI server - currently it supports GitHub Actions, Azure Pipelines, Travis CI, CircleCI, and GitLab CI - and it builds and tests your wheels across all of your platforms.
17
+
`cibuildwheel` is here to help. `cibuildwheel` runs on your CI server - currently it supports GitHub Actions, Azure Pipelines, CircleCI, and GitLab CI - and it builds and tests your wheels across all of your platforms.
19
18
20
19
21
20
What does it do?
@@ -46,7 +45,7 @@ While cibuildwheel itself requires a recent Python version to run (we support th
46
45
<sup>⁵ manylinux armv7l support is experimental. As there are no RHEL based image for this architecture, it's using an Ubuntu based image instead.</sup><br>
47
46
48
47
- Builds manylinux, musllinux, macOS, and Windows wheels for CPython, PyPy, and GraalPy
49
-
- Works on GitHub Actions, Azure Pipelines, Travis CI, CircleCI, GitLab CI, and Cirrus CI
48
+
- Works on GitHub Actions, Azure Pipelines, CircleCI, GitLab CI, and Cirrus CI
50
49
- Bundles shared library dependencies on Linux and macOS through [auditwheel](https://github.com/pypa/auditwheel) and [delocate](https://github.com/matthew-brett/delocate)
51
50
- Runs your library's tests against the wheel-installed version of your library
Copy file name to clipboardExpand all lines: docs/ci-services.md
-16Lines changed: 0 additions & 16 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -72,22 +72,6 @@ Commit this file, enable building of your repo on Azure Pipelines, and push.
72
72
73
73
Wheels will be stored for you and available through the Pipelines interface. For more info on this file, check out the [docs](https://docs.microsoft.com/en-us/azure/devops/pipelines/yaml-schema).
74
74
75
-
### Travis CI [linux/windows] {: #travis-ci}
76
-
77
-
To build Linux and Windows wheels on Travis CI, create a `.travis.yml` file in your repo.
78
-
79
-
> .travis.yml
80
-
81
-
```yaml
82
-
{% include "../examples/travis-ci-minimal.yml" %}
83
-
```
84
-
85
-
Commit this file, enable building of your repo on Travis CI, and push.
86
-
87
-
Then setup a deployment method by following the [Travis CI deployment docs](https://docs.travis-ci.com/user/deployment/), or see [Delivering to PyPI](deliver-to-pypi.md). For more info on `.travis.yml`, check out the [docs](https://docs.travis-ci.com/).
88
-
89
-
[`examples/travis-ci-deploy.yml`](https://github.com/pypa/cibuildwheel/blob/main/examples/travis-ci-deploy.yml) extends this minimal example with a demonstration of how to automatically upload the built wheels to PyPI.
90
-
91
75
### CircleCI [linux/mac] {: #circleci}
92
76
93
77
To build Linux and Mac wheels on CircleCI, create a `.circleci/config.yml` file in your repo,
0 commit comments