corydolphin / flask-cors

Cross Origin Resource Sharing ( CORS ) support for Flask
https://flask-cors.corydolphin.com/
MIT License
867 stars 140 forks source link

python 3.12 #343

Closed michaelkariv closed 2 months ago

michaelkariv commented 4 months ago

Python version 3.12 is not mentioned as supported on PyPi My guess is that 3.12 was made GA chronologically after the latest release (4.0.0). Am I correct? Should I expect any problems if my project is being migrated to 3.12?

kurtmckee commented 3 months ago

344 tests flask-cors against Python 3.12; the test suite passes across all tested Flask versions (1.x, 2.x, and 3.x).

Regarding what's mentioned on PyPI, that's simply a list of "trove classifiers" (in PyPI terminology) that were present in setup.py for whatever version you're currently looking at on PyPI (for example, the trove classifiers were different when flask-cors 3.0.10 was published).

https://github.com/corydolphin/flask-cors/blob/0b744011ac7252f2cd96f76b75a772c48e19f0d6/setup.py#L46-L49

corydolphin commented 2 months ago

Thanks Kurt! Updated the Trove classifier and tests run on Python 3.12. Closing.