Arguments width, height and title raise an error in the class Window, likely due to a mistmatch with pyglet version updates.
Code to reproduce:
from psychos import visual
win = visual.Window(width=800, height=600, title="Test")
psychos version: 0.0.6
pyglet version: 2.0+
Temporal fix: Use without specify the heigth and with, and adjust the size with the fullscreen mode.
from psychos import visual
win = visual.Window(fullscreen=True)
Arguments
width,heightandtitleraise an error in the classWindow, likely due to a mistmatch withpygletversion updates.Code to reproduce:
psychos version: 0.0.6
pyglet version: 2.0+
Temporal fix: Use without specify the heigth and with, and adjust the size with the fullscreen mode.