tjensen / dayz-dev-tools

Useful tools for DayZ mod developers
https://dayz-dev-tools.readthedocs.io/
MIT License
7 stars 1 forks source link

Add Python 3.13-dev to CI Build #39

Closed tjensen closed 3 months ago

tjensen commented 3 months ago

Python 3.13 seems to have changed something in ntpath.split and ntpath.join which causes those functions to now raise UnicodeDecodeError exceptions when given bytes objects that contain bytes that aren't valid UTF-8. To avoid these issues, the affected calls have been replaced with other implementations.