Marco-Sulla / python-frozendict

A simple immutable dictionary for Python
https://github.com/Marco-Sulla/python-frozendict
GNU Lesser General Public License v3.0
133 stars 16 forks source link

[FEATURE] Create wheels for python 3.11 (and 3.12) #100

Closed thomasfrederikhoeck closed 5 months ago

thomasfrederikhoeck commented 5 months ago

Welcome! Before you write your Feature Request, please read below:

Is your feature request related to a problem? Please describe. When using frozendict on newer versions of python (3.11 and above) I need to compile frozendict.

Describe the solution you'd like Build and release wheels for python 3.11 and 3.12 too.

Describe alternatives you've considered

Additional context Add any other context or screenshots about the feature request here.

Marco-Sulla commented 5 months ago

Confirmed. Not a big deal, I must say, since it seems to take seconds to build the wheel (C extension is not yet available for python 3.11+)

Marco-Sulla commented 5 months ago

Ok, the pipeline was adapted: https://github.com/Marco-Sulla/python-frozendict/commit/216c48a2e37ed99bbcac01a02c1e1e3808a93b48 and the wheels for Python 3.11 and 3.12 was uploaded to Pypi: https://pypi.org/project/frozendict/#files

Can you confirm that the wheels are working?

thomasfrederikhoeck commented 5 months ago

It works! Thank you @Marco-Sulla