carla icon indicating copy to clipboard operation
carla copied to clipboard

Generate more python versions *.whl in the package

Open xavisolesoft opened this issue 1 year ago • 1 comments
trafficstars

CARLA 0.9.15 just contains the *.whl files for Python 2.7 and Python 3.7.

We should check why the make package is just generating this *.whl files and update the release package with different newer Python versions.

Proposed python versions:

  • 3.8
  • 3.10
  • 3.12

xavisolesoft avatar Apr 19 '24 11:04 xavisolesoft

It is only a guess, because I edited some files and got a python 3.8 *.whl

https://github.com/carla-simulator/carla/blob/dev/Util/BuildTools/BuildPythonAPI.sh line 19

PY_VERSION_LIST=3

The same here https://github.com/carla-simulator/carla/blob/dev/Util/BuildTools/Setup.sh line 15

PY_VERSION_LIST=3

On Ubuntu, if you can change that line to

PY_VERSION_LIST=3.8

It was a fix for Ubuntu 22.04, until Ubuntu 22.04 stopped to support clang-7 (maybe it was clang-8)

PatrickPromitzer avatar Apr 24 '24 17:04 PatrickPromitzer