JoelBender / bacpypes

BACpypes provides a BACnet application layer and network layer written in Python for daemons, scripting, and graphical interfaces.
MIT License
298 stars 129 forks source link

Python 3.12 Unsupported version of Python #525

Closed D3vil0p3r closed 4 months ago

D3vil0p3r commented 4 months ago

When I run setup.py by Python 3.12, I get:

Traceback (most recent call last):
  File "/tmp/makepkg/python-bacpypes/src/bacpypes-0.18.6/setup.py", line 26, in <module>
    raise EnvironmentError("unsupported version of Python")
OSError: unsupported version of Python
ChristianTremblay commented 4 months ago

Bacpypes legacy won't work with Python 3.12 as asyncore is no longer supported. You need to use bacpypes3

D3vil0p3r commented 4 months ago

So this one: https://github.com/JoelBender/BACpypes3

Thank you