pytransitions / transitions

A lightweight, object-oriented finite state machine implementation in Python with many extensions
MIT License
5.68k stars 530 forks source link

AssertionError: Description should start with a headline #369

Closed mali30 closed 5 years ago

mali30 commented 5 years ago
OS: MacOS v10.14.6
python3 version: Python 3.7.4
Are you using a virtualenv : No

Expected: The setup.py runs successfully and I am able to use transitions in my python script

Actual: I downloaded transitions via the GitHub download and tried running the command python3 setup.py install, I received the error

Traceback (most recent call last):
  File "setup.py", line 11, in <module>
    assert long_description[:3] == '## '  # Description should start with a headline (## Quickstart)
AssertionError

Any ideas on what to do about this?

mali30 commented 5 years ago

I figured out why. I named my filed transitions.py. I changed it and now it runs successfully. Will go ahead and close this issue.