dask / dask-mpi

Deploy Dask using MPI4Py
BSD 3-Clause "New" or "Revised" License
52 stars 29 forks source link

fix versioneer for python3.12 #123

Closed pbsds closed 7 months ago

pbsds commented 7 months ago

tested building a wheel on python312 and python311

Same fix as in https://github.com/shaypal5/strct/pull/4:

curl -L https://github.com/shaypal5/strct/pull/4.patch | git am

preferably you'd vendor a newer versioneer or switch to pyproject.toml

jacobtomlinson commented 7 months ago

Appreciate the fix here! I think it would be better to upgrade versioneer though instead of patching the specific issue.

I ran the following commands and pushed a new commit:

pip install --upgrade versioneer
versioneer install
kmpaul commented 7 months ago

Thanks, @jacobtomlinson @pbsds!