You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
elo setup requires setuptool's use_2to3, which unfortunately was deprecated and removed in setuptools v58. This will make the elo library problematic down the road, as we can't stay up setuptools <58 forever. So we need to either find another elo library or maybe just write our own implementation.
The text was updated successfully, but these errors were encountered:
Original library is no longer maintained and has issues with setup.py
calling use_2to3 which was removed in setuptools v58. Since we just need
elo.py, I've just copied it locally so we can skip using it as a
dependency to be installed.
Minor modifications were made:
- metaclass removed, python 3 has new syntax and it doesn't seem
necessary
- long datatype removed, python 3 no longer has long
This fixes#1028
Original library is no longer maintained and has issues with setup.py
calling use_2to3 which was removed in setuptools v58. Since we just need
elo.py, I've just copied it locally so we can skip using it as a
dependency to be installed.
Minor modifications were made:
- metaclass removed, python 3 has new syntax and it doesn't seem
necessary
- long datatype removed, python 3 no longer has long
This fixes#1028
elo setup requires setuptool's use_2to3, which unfortunately was deprecated and removed in setuptools v58. This will make the elo library problematic down the road, as we can't stay up setuptools <58 forever. So we need to either find another elo library or maybe just write our own implementation.
The text was updated successfully, but these errors were encountered: