debugpy/packaging/linux
2020-01-17 11:57:13 -08:00
..
build_plat.sh Reorganize source code to reflect the split between the adapter proper and the debug server. 2019-05-23 15:14:50 -07:00
readme.md Rename ptvsd -> debugpy. 2020-01-17 11:57:13 -08:00

Building manylinux1 wheels

  1. Clone debugpy to a base directory (say C:\git), giving debugpy repository at C:\git\debugpy.
  2. Create dir dist under C:\debugpy\dist.
  3. Run the following command:
  • x86_64: docker run --rm -v C:\git:/io -w /io quay.io/pypa/manylinux1_x86_64:latest /io/debugpy/linux/build_plat.sh /io/debugpy /io/dist cp37-cp37m
  • i686: docker run --rm -v C:\git:/io -w /io quay.io/pypa/manylinux1_i686:latest /io/debugpy/linux/build_plat.sh /io/debugpy/io/dist cp37-cp37m
  1. After the run the built wheel should be in C:\git\dist.

Other python ABI options:

  • cp27-cp27m
  • cp27-cp27mu
  • cp35-cp35m
  • cp36-cp36m
  • cp37-cp37m
  • cp38-cp38m