thomasahle / sunfish

Sunfish: a Python Chess Engine in 111 lines of code
https://www.chessprogramming.org/Sunfish
Other
2.95k stars 543 forks source link

Add `#!/usr/bin/env pypy3` to top of fancy.py #84

Closed misterbeebee closed 1 year ago

misterbeebee commented 3 years ago

sunfish.py has a shebang line, but fancy.py doesn't.

To make fancy.py run out-of-the-box, add #!/usr/bin/env pypy3 to top of fancy.py.`

(fancy.py doesn't work with Python2pypy, so requirespypy3.sunfish.pydoes run under Python2pypy`)

misterbeebee commented 3 years ago

Correction: I think fancy.py will work with pypy; pypy3 not required.

thomasahle commented 1 year ago

This is fixed in the latest version. Thanks.