masdeseiscaracteres / wheel_generator

Python wheel generator using Azure DevOps CI/CD services

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Wheel generator

This repo takes a list of Python packages and generates their corresponding Python wheels using an Azure DevOps pipeline.

It's useful if your Windows machine doesn't have the proper build tools installed and you want to test a Python package distribution including extensions whose authors haven't generated the associated whl file.

Which operating systems and Python versions are supported?

Currently, it only generates Windows 64 bits wheels for Python 3.6, 3.7 and 3.8, but it should be easy to extend to others.

How to add a new package

Just add the desired package to packages.txt. Once your changes are pushed to this repo, it will automatically trigger a CI/CD pipeline in Azure DevOps.

How to use the generated wheels

pip install --extra-index=https://pkgs.dev.azure.com/masdeseiscaracteres/python_packages/_packaging/artifacts/pypi/simple/ <package_name>

Click here to see an up-to-date list of available packages.

About

Python wheel generator using Azure DevOps CI/CD services

License:BSD 2-Clause "Simplified" License


Languages

Language:Python 100.0%