psychopy 2025.1.0__py3-none-any.whl → 2025.1.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of psychopy might be problematic. Click here for more details.
- psychopy/VERSION +1 -1
- psychopy/colors.py +10 -5
- psychopy/data/utils.py +1 -1
- psychopy/hardware/camera/__init__.py +2 -2
- psychopy/hardware/microphone.py +1 -1
- psychopy/iohub/devices/eyetracker/hw/gazepoint/__init__.py +2 -2
- psychopy/iohub/devices/eyetracker/hw/gazepoint/gp3/__init__.py +1 -0
- psychopy/iohub/devices/eyetracker/hw/gazepoint/gp3/eyetracker.py +10 -0
- psychopy/tools/gltools.py +4 -2
- psychopy/visual/helpers.py +3 -1
- psychopy/visual/window.py +1 -1
- {psychopy-2025.1.0.dist-info → psychopy-2025.1.1.dist-info}/METADATA +6 -5
- {psychopy-2025.1.0.dist-info → psychopy-2025.1.1.dist-info}/RECORD +16 -16
- {psychopy-2025.1.0.dist-info → psychopy-2025.1.1.dist-info}/WHEEL +1 -1
- {psychopy-2025.1.0.dist-info → psychopy-2025.1.1.dist-info}/entry_points.txt +0 -0
- {psychopy-2025.1.0.dist-info → psychopy-2025.1.1.dist-info}/licenses/LICENSE +0 -0
psychopy/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
2025.1.
|
|
1
|
+
2025.1.1
|
psychopy/colors.py
CHANGED
|
@@ -261,7 +261,6 @@ class Color:
|
|
|
261
261
|
self._cache = {}
|
|
262
262
|
self._renderCache = {}
|
|
263
263
|
self.contrast = contrast if isinstance(contrast, (int, float)) else 1
|
|
264
|
-
self.alpha = 1
|
|
265
264
|
self.valid = False
|
|
266
265
|
self.conematrix = conematrix
|
|
267
266
|
|
|
@@ -398,7 +397,7 @@ class Color:
|
|
|
398
397
|
"""If colour is printed, it will display its class and value.
|
|
399
398
|
"""
|
|
400
399
|
if self.valid:
|
|
401
|
-
if self.named:
|
|
400
|
+
if isinstance(self.named, str):
|
|
402
401
|
return (f"<{self.__class__.__module__}."
|
|
403
402
|
f"{self.__class__.__name__}: {self.named}, "
|
|
404
403
|
f"alpha={self.alpha}>")
|
|
@@ -537,12 +536,18 @@ class Color:
|
|
|
537
536
|
"""How opaque (1) or transparent (0) this color is. Synonymous with
|
|
538
537
|
`opacity`.
|
|
539
538
|
"""
|
|
540
|
-
|
|
539
|
+
if hasattr(self, "_alpha"):
|
|
540
|
+
return self._alpha
|
|
541
|
+
|
|
542
|
+
return 1
|
|
541
543
|
|
|
542
544
|
@alpha.setter
|
|
543
545
|
def alpha(self, value):
|
|
544
|
-
|
|
545
|
-
|
|
546
|
+
if value is None:
|
|
547
|
+
# setting as None should do nothing
|
|
548
|
+
return
|
|
549
|
+
elif isinstance(value, np.ndarray):
|
|
550
|
+
# treat 1x1 arrays as a float
|
|
546
551
|
if value.size == 1:
|
|
547
552
|
value = float(value[0])
|
|
548
553
|
else:
|
psychopy/data/utils.py
CHANGED
|
@@ -389,7 +389,7 @@ def importConditions(fileName, returnFieldNames=False, selection=""):
|
|
|
389
389
|
if val.startswith('[') and val.endswith(']'):
|
|
390
390
|
# val = eval('%s' %unicode(val.decode('utf8')))
|
|
391
391
|
val = eval(val)
|
|
392
|
-
elif type(val) == np.
|
|
392
|
+
elif type(val) == np.bytes_:
|
|
393
393
|
val = str(val.decode('utf-8-sig'))
|
|
394
394
|
# if it looks like a list, convert it:
|
|
395
395
|
if val.startswith('[') and val.endswith(']'):
|
|
@@ -679,7 +679,7 @@ class CameraInterfaceFFmpeg(CameraInterface):
|
|
|
679
679
|
Barrier which is used to synchronize audio and video recording.
|
|
680
680
|
This ensures that the audio device is ready before buffering
|
|
681
681
|
frames captured by the camera.
|
|
682
|
-
audioCapture : psychopy.sound.Microphone or None
|
|
682
|
+
audioCapture : psychopy.sound.microphone.Microphone or None
|
|
683
683
|
Microphone object to use for audio capture. This will be used to
|
|
684
684
|
synchronize the audio and video streams. If `None`, no audio
|
|
685
685
|
will be captured.
|
|
@@ -1153,7 +1153,7 @@ class CameraInterfaceOpenCV(CameraInterface):
|
|
|
1153
1153
|
Barrier which is used to synchronize audio and video recording.
|
|
1154
1154
|
This ensures that the audio device is ready before buffering
|
|
1155
1155
|
frames captured by the camera.
|
|
1156
|
-
audioCapture : psychopy.sound.Microphone or None
|
|
1156
|
+
audioCapture : psychopy.sound.microphone.Microphone or None
|
|
1157
1157
|
Microphone object to use for audio capture. This will be used to
|
|
1158
1158
|
synchronize the audio and video streams. If `None`, no audio
|
|
1159
1159
|
will be captured.
|
psychopy/hardware/microphone.py
CHANGED
|
@@ -89,7 +89,7 @@ class MicrophoneDevice(BaseDevice, aliases=["mic", "microphone"]):
|
|
|
89
89
|
Capture 10 seconds of audio from the primary microphone::
|
|
90
90
|
|
|
91
91
|
import psychopy.core as core
|
|
92
|
-
import psychopy.sound.Microphone as Microphone
|
|
92
|
+
import psychopy.sound.microphone.Microphone as Microphone
|
|
93
93
|
|
|
94
94
|
mic = Microphone(bufferSecs=10.0) # open the microphone
|
|
95
95
|
mic.start() # start recording
|
|
@@ -9,6 +9,7 @@ try:
|
|
|
9
9
|
from psychopy_eyetracker_gazepoint.gazepoint.gp3 import (
|
|
10
10
|
__file__,
|
|
11
11
|
EyeTracker,
|
|
12
|
+
GazepointSampleEvent,
|
|
12
13
|
MonocularEyeSampleEvent,
|
|
13
14
|
BinocularEyeSampleEvent,
|
|
14
15
|
FixationStartEvent,
|
|
@@ -16,8 +17,7 @@ try:
|
|
|
16
17
|
SaccadeStartEvent,
|
|
17
18
|
SaccadeEndEvent,
|
|
18
19
|
BlinkStartEvent,
|
|
19
|
-
BlinkEndEvent
|
|
20
|
-
GazepointSampleEvent
|
|
20
|
+
BlinkEndEvent
|
|
21
21
|
)
|
|
22
22
|
except (ModuleNotFoundError, ImportError, NameError):
|
|
23
23
|
logging.error(
|
|
@@ -17,5 +17,15 @@ except (ModuleNotFoundError, ImportError, NameError):
|
|
|
17
17
|
"'psychopy-eyetracker-gazepoint' to be installed. Please install this "
|
|
18
18
|
"package and restart the session to enable support.")
|
|
19
19
|
|
|
20
|
+
# sample event for this device was moved to the plugin, but we're going to use
|
|
21
|
+
# the original class for compatibility with older plugin versions
|
|
22
|
+
try:
|
|
23
|
+
from psychopy_eyetracker_gazepoint.gazepoint.gp3.eyetracker import (
|
|
24
|
+
GazepointSampleEvent)
|
|
25
|
+
except (ModuleNotFoundError, ImportError, NameError):
|
|
26
|
+
# import it from the old iohub location
|
|
27
|
+
from ....eye_events import GazepointSampleEvent
|
|
28
|
+
|
|
29
|
+
|
|
20
30
|
if __name__ == "__main__":
|
|
21
31
|
pass
|
psychopy/tools/gltools.py
CHANGED
|
@@ -121,7 +121,6 @@ __all__ = [
|
|
|
121
121
|
'createTexImage2D',
|
|
122
122
|
'createTexImage2dFromFile',
|
|
123
123
|
'bindTexture',
|
|
124
|
-
'unbindTexture',
|
|
125
124
|
'createCubeMap',
|
|
126
125
|
'TexCubeMap',
|
|
127
126
|
'getModelViewMatrix',
|
|
@@ -405,7 +404,10 @@ def getOpenGLInfo():
|
|
|
405
404
|
|
|
406
405
|
|
|
407
406
|
# OpenGL limits for this system
|
|
408
|
-
|
|
407
|
+
try:
|
|
408
|
+
MAX_TEXTURE_UNITS = getOpenGLInfo().maxTextureUnits
|
|
409
|
+
except:
|
|
410
|
+
MAX_TEXTURE_UNITS = 32
|
|
409
411
|
|
|
410
412
|
|
|
411
413
|
# -------------------------------
|
psychopy/visual/helpers.py
CHANGED
|
@@ -216,7 +216,9 @@ def setColor(obj, color, colorSpace=None, operation='',
|
|
|
216
216
|
raw = color
|
|
217
217
|
color = colors.Color(raw, colorSpace)
|
|
218
218
|
assert color.valid, f"Could not create valid Color object from value {raw} in space {colorSpace}"
|
|
219
|
-
|
|
219
|
+
# set opacity from object if not given by color
|
|
220
|
+
if hasattr(obj, "opacity") and not hasattr(color, "_alpha"):
|
|
221
|
+
color.alpha = obj.opacity
|
|
220
222
|
# Apply new value
|
|
221
223
|
if operation in ('=', '', None):
|
|
222
224
|
# If no operation, just set color from object
|
psychopy/visual/window.py
CHANGED
|
@@ -2724,7 +2724,7 @@ class Window():
|
|
|
2724
2724
|
|
|
2725
2725
|
if fileExt in ['.gif', '.mpg', '.mpeg', '.mp4', '.mov']:
|
|
2726
2726
|
# lazy loading of moviepy.editor (rarely needed)
|
|
2727
|
-
from moviepy
|
|
2727
|
+
from moviepy import ImageSequenceClip
|
|
2728
2728
|
# save variety of movies with moviepy
|
|
2729
2729
|
numpyFrames = []
|
|
2730
2730
|
for frame in self.movieFrames:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: psychopy
|
|
3
|
-
Version: 2025.1.
|
|
3
|
+
Version: 2025.1.1
|
|
4
4
|
Summary: PsychoPy provides easy, precise, flexible experiments in behavioural sciences
|
|
5
5
|
Author-Email: Open Science Tools Ltd <support@opensciencetools.org>
|
|
6
6
|
Maintainer-Email: Open Science Tools Ltd <support@opensciencetools.org>
|
|
@@ -17,7 +17,7 @@ Classifier: License :: OSI Approved :: GNU General Public License v3 or later (G
|
|
|
17
17
|
Project-URL: Homepage, https://www.psychopy.org/
|
|
18
18
|
Project-URL: Download, https://github.com/psychopy/psychopy/releases/
|
|
19
19
|
Requires-Python: <3.11,>=3.8
|
|
20
|
-
Requires-Dist: numpy
|
|
20
|
+
Requires-Dist: numpy
|
|
21
21
|
Requires-Dist: scipy
|
|
22
22
|
Requires-Dist: matplotlib
|
|
23
23
|
Requires-Dist: pyglet==1.4.11; platform_system == "Windows"
|
|
@@ -31,7 +31,7 @@ Requires-Dist: xmlschema
|
|
|
31
31
|
Requires-Dist: soundfile
|
|
32
32
|
Requires-Dist: imageio
|
|
33
33
|
Requires-Dist: imageio-ffmpeg
|
|
34
|
-
Requires-Dist: psychtoolbox; platform_machine != "arm64"
|
|
34
|
+
Requires-Dist: psychtoolbox<3.0.20; platform_machine != "arm64"
|
|
35
35
|
Requires-Dist: pywinhook; platform_system == "Windows"
|
|
36
36
|
Requires-Dist: gevent
|
|
37
37
|
Requires-Dist: MeshPy
|
|
@@ -65,9 +65,9 @@ Requires-Dist: opencv-python
|
|
|
65
65
|
Requires-Dist: python-vlc==3.0.11115; platform_system == "Windows"
|
|
66
66
|
Requires-Dist: python-vlc>=3.0.12118; platform_system != "Windows"
|
|
67
67
|
Requires-Dist: pypiwin32; platform_system == "Windows"
|
|
68
|
-
Requires-Dist: pyobjc-core; platform_system == "Darwin"
|
|
68
|
+
Requires-Dist: pyobjc-core<8.0; platform_system == "Darwin"
|
|
69
69
|
Requires-Dist: pyobjc-framework-Quartz<8.0; platform_system == "Darwin"
|
|
70
|
-
Requires-Dist: pyobjc; platform_system == "Darwin"
|
|
70
|
+
Requires-Dist: pyobjc<8.0; platform_system == "Darwin"
|
|
71
71
|
Requires-Dist: zeroconf; platform_system == "Darwin"
|
|
72
72
|
Requires-Dist: python-xlib; platform_system == "Linux"
|
|
73
73
|
Requires-Dist: distro; platform_system == "Linux"
|
|
@@ -87,6 +87,7 @@ Requires-Dist: sphinx; extra == "docs"
|
|
|
87
87
|
Requires-Dist: sphinx-design; extra == "docs"
|
|
88
88
|
Requires-Dist: sphinx-copybutton; extra == "docs"
|
|
89
89
|
Requires-Dist: jinja2; extra == "docs"
|
|
90
|
+
Requires-Dist: psychopy-sphinx-theme; extra == "docs"
|
|
90
91
|
Provides-Extra: building
|
|
91
92
|
Requires-Dist: bdist-mpkg>=0.5.0; platform_system == "Darwin" and extra == "building"
|
|
92
93
|
Requires-Dist: py2app; platform_system == "Darwin" and extra == "building"
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
psychopy-2025.1.
|
|
2
|
-
psychopy-2025.1.
|
|
3
|
-
psychopy-2025.1.
|
|
4
|
-
psychopy-2025.1.
|
|
1
|
+
psychopy-2025.1.1.dist-info/METADATA,sha256=aQwIf0b2IU1BHr--q1cSXR05m9ipXybjsJijo5aYCRQ,6890
|
|
2
|
+
psychopy-2025.1.1.dist-info/WHEEL,sha256=tSfRZzRHthuv7vxpI4aehrdN9scLjk-dCJkPLzkHxGg,90
|
|
3
|
+
psychopy-2025.1.1.dist-info/entry_points.txt,sha256=92yXWHVE-Cb0_tLpZtADXPvizZfLCNwWAaKzmwLytY0,75
|
|
4
|
+
psychopy-2025.1.1.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
|
5
5
|
psychopy/CHANGELOG.txt,sha256=fSk0y44DSHUOb7-Vq1iVW8GajrYQ1TPvR9NrUpDMJaQ,229938
|
|
6
6
|
psychopy/GIT_SHA,sha256=poPFxTSfb3-5A7qKnn5V0LobjwNXn5W-g_SVTDPoEJg,3
|
|
7
7
|
psychopy/LICENSE.txt,sha256=J4J7TgFgGOTFsr7K6Do48SdCIwq88_KLfMF8uicd3Ww,746
|
|
8
8
|
psychopy/LICENSES.txt,sha256=T59KljDkUEEtd40IHWS-S0OTSjzqueGD6oNmgqpRIf0,3145
|
|
9
|
-
psychopy/VERSION,sha256=
|
|
9
|
+
psychopy/VERSION,sha256=flSG4xab7bBfFtPEzTHpM09PzMtmpGYh5mW4q39nY4Y,8
|
|
10
10
|
psychopy/__init__.py,sha256=osxJ0ZLmvnPWjh_wfwXC1pMKgdzHed6nbC75eEkPn0Y,6374
|
|
11
11
|
psychopy/alerts/__init__.py,sha256=DdH53mofze7STJuVU5U3pCNIpkghBc0Xz083UJMN5Vw,2231
|
|
12
12
|
psychopy/alerts/_alerts.py,sha256=UB9uYd0jC6anfZzJIctp4aBNccEPyXFKRCDDai9hy5s,6556
|
|
@@ -1183,7 +1183,7 @@ psychopy/changes/2023.1.0.md,sha256=KK3FZ9oD4_vketl67UPIDIrnERl3vTlq8SltI6-Hom8,
|
|
|
1183
1183
|
psychopy/changes/2024.1.0.md,sha256=gnAKRRtApM-6IwVwJJEpO6nYOHO5Gorh1e4L0WVe0zY,990
|
|
1184
1184
|
psychopy/changes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1185
1185
|
psychopy/clock.py,sha256=3rv9R76Kgcr9Fyctkl8Vu7Viyi49jVm_MhFmQi_bgrI,21310
|
|
1186
|
-
psychopy/colors.py,sha256=
|
|
1186
|
+
psychopy/colors.py,sha256=dprdGs7iYX7LgIE0qmKgVhTFljVEwzXhPC0RVrCvqQE,41343
|
|
1187
1187
|
psychopy/compatibility.py,sha256=WM9bOY2UFYbNAQ4a9TCdv_bYz-LbbT8xbtPWzLVYkfQ,4935
|
|
1188
1188
|
psychopy/constants.py,sha256=-aWiiF_3ELPCqArm4UmQVwBVyZjsk7gJh91N1ekW5mc,3725
|
|
1189
1189
|
psychopy/contrib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -1207,7 +1207,7 @@ psychopy/data/routine.py,sha256=9zwJ48BlXW09JOFHNmg-H4vLopCNgl7ccj5m9YUDWa4,2871
|
|
|
1207
1207
|
psychopy/data/shelf.py,sha256=oNRU-c8-CaFZOkm7YYj6mSIO5bpi5To8qnMpSrsW-6s,7817
|
|
1208
1208
|
psychopy/data/staircase.py,sha256=Nv3MgPGjMx6qO3716eLjcHspi5rtXSQWpEPuI2A9v0w,88778
|
|
1209
1209
|
psychopy/data/trial.py,sha256=zRnGMNAuIge2ymaMQvECh2LCIYoH0mXH_Ky-Lc_N5Go,100645
|
|
1210
|
-
psychopy/data/utils.py,sha256=
|
|
1210
|
+
psychopy/data/utils.py,sha256=6gjx81Gz6eg2v97G8tpdViOzWAo9QE6dWdFez_CjdL0,31185
|
|
1211
1211
|
psychopy/demos/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1212
1212
|
psychopy/demos/builder/Design Templates/branchedExperiment/README.md,sha256=NonoZ-4bB8RbMecT6SoS3uDTGJ7IX1hEU212M9DiPOc,492
|
|
1213
1213
|
psychopy/demos/builder/Design Templates/branchedExperiment/branchedExperiment.psyexp,sha256=Mqob7s6_jmqjw2kPi0bhpJH1UEtG3asy4z_SKPfcWdU,25906
|
|
@@ -1816,7 +1816,7 @@ psychopy/hardware/bbtk/__init__.py,sha256=6bDClmjgD48c28uiUQ6Mfz_OS6QKzN36pCjt3W
|
|
|
1816
1816
|
psychopy/hardware/brainproducts.py,sha256=S_utq4JFu54LrRzdGJ_CzNNRcI2r1Gq7_GzfF5H8a2w,709
|
|
1817
1817
|
psychopy/hardware/button.py,sha256=9xMeuIe0fTBvxDodPJui90Pcz4MgnAGj2G6b6Zn7wH8,7788
|
|
1818
1818
|
psychopy/hardware/buttonbox/__init__.py,sha256=HlLksv1h05C14YRSKhU3zYCJjbn2POcRdF_XcLi3O5Y,2987
|
|
1819
|
-
psychopy/hardware/camera/__init__.py,sha256=
|
|
1819
|
+
psychopy/hardware/camera/__init__.py,sha256=4JGwaGD4OOYAswBFD8D3EVJW8wNc5OmRjSe8V2Q1r14,97182
|
|
1820
1820
|
psychopy/hardware/cedrus.py,sha256=kkYQ41pFVuzw6-d4arVlRELB5KjXiN0t4Il6fqmGPP0,632
|
|
1821
1821
|
psychopy/hardware/crs/__init__.py,sha256=fcYVmEJuRTZhe73wZK1qD_5PZbFq0sp8hNF-l7ukbcA,1406
|
|
1822
1822
|
psychopy/hardware/crs/bits.py,sha256=N-CLyD6BbR6LvC_OLIKpfNGNzDvdcU_lzst-dONzSmU,827
|
|
@@ -1842,7 +1842,7 @@ psychopy/hardware/labjacks.py,sha256=D7xuDuxNQbIOz80ehb3iP9xDLodjQ7V5mlJxIPjWPWU
|
|
|
1842
1842
|
psychopy/hardware/lightsensor.py,sha256=psmCFywa3p9q_rrSBPiFIqEbSAWHdDG5Hy5v0M62gIE,29464
|
|
1843
1843
|
psychopy/hardware/listener.py,sha256=1uqbW8K0L9h7Rnowvw-rijMt7ecVjaRbh9YjBB8CAwU,9933
|
|
1844
1844
|
psychopy/hardware/manager.py,sha256=Na5LRkpjtkx-7oeCxdux5tIuioqEmI2svTRBMB-TXu0,30327
|
|
1845
|
-
psychopy/hardware/microphone.py,sha256=
|
|
1845
|
+
psychopy/hardware/microphone.py,sha256=R4lKBkYt2ZtlI4R_zmzUrTwYIF_ICkS8xYHE_HJYGQI,57438
|
|
1846
1846
|
psychopy/hardware/minolta.py,sha256=vxBENi8jxucrC2RvbQRMAVQ_E1liy_Kkc6pmJdmJxmU,784
|
|
1847
1847
|
psychopy/hardware/mouse/__init__.py,sha256=FxQbECcYVQI92eO1gDchYrRl08jYS9u3gxdawC7yjWk,29029
|
|
1848
1848
|
psychopy/hardware/photometer/__init__.py,sha256=rqaEJDMgn6H918l5P7-IZHfPrc2HLXXAqtycGANxerg,5619
|
|
@@ -1890,10 +1890,10 @@ psychopy/iohub/devices/eyetracker/eye_events.py,sha256=P7IBw_w1Ackb7ehZ_dTzebpyL
|
|
|
1890
1890
|
psychopy/iohub/devices/eyetracker/filters/__init__.py,sha256=PFWJUUNeGZKEuKk6SztNbmZ1nvKU8AkBfPoWid8h9QI,206
|
|
1891
1891
|
psychopy/iohub/devices/eyetracker/filters/parser.py,sha256=ymth5KJurkak4ci2xtYqft_tCS0qwA3RgPV5ITNWR9E,39535
|
|
1892
1892
|
psychopy/iohub/devices/eyetracker/hw/__init__.py,sha256=VyfE-ZEHSoMHLONSpl2dHo72ta2xtDIRLfc4rmmz_kE,211
|
|
1893
|
-
psychopy/iohub/devices/eyetracker/hw/gazepoint/__init__.py,sha256=
|
|
1894
|
-
psychopy/iohub/devices/eyetracker/hw/gazepoint/gp3/__init__.py,sha256=
|
|
1893
|
+
psychopy/iohub/devices/eyetracker/hw/gazepoint/__init__.py,sha256=xh03KKIWQkD9KvjedocWHzSNaUTA4Zzt47mI8aoR0Y4,918
|
|
1894
|
+
psychopy/iohub/devices/eyetracker/hw/gazepoint/gp3/__init__.py,sha256=IL4_ETVSMc6qFo054xh607vVqU58NL4klOlhD8Tqv5o,919
|
|
1895
1895
|
psychopy/iohub/devices/eyetracker/hw/gazepoint/gp3/calibration.py,sha256=I4m0ofPuoHSaarJQYQ5hMDF80pEHIVbRVHPo_3qvXgA,673
|
|
1896
|
-
psychopy/iohub/devices/eyetracker/hw/gazepoint/gp3/eyetracker.py,sha256=
|
|
1896
|
+
psychopy/iohub/devices/eyetracker/hw/gazepoint/gp3/eyetracker.py,sha256=ywMRlw8ZEQyBkrlNAezlHMG2WTWCnu-pAUC3Luctoqw,1118
|
|
1897
1897
|
psychopy/iohub/devices/eyetracker/hw/mouse/__init__.py,sha256=h_FynTTzW3zai47FPELYG7YoA1bP9APvTCX4LDpBp_s,473
|
|
1898
1898
|
psychopy/iohub/devices/eyetracker/hw/mouse/calibration.py,sha256=EUxWBeE-akgK2ElPBqWHO5kPLVznvUy7O7nVgQUdIfU,541
|
|
1899
1899
|
psychopy/iohub/devices/eyetracker/hw/mouse/default_eyetracker.yaml,sha256=2gqv_0nFIqgj6CeJ0J_B9XBWUT8KPsiG7MIJhDfg0UA,4270
|
|
@@ -2999,7 +2999,7 @@ psychopy/tools/environmenttools.py,sha256=4p1_rRom8JltmzjmwEOFkX5WzRs-3hM4oNu5QN
|
|
|
2999
2999
|
psychopy/tools/fileerrortools.py,sha256=iniFNtFgXRYIgO2KknVCUPKfoKfBKIHWvCmSGeUcUbw,2561
|
|
3000
3000
|
psychopy/tools/filetools.py,sha256=kASkjSmZNthgWOd626G_MubyuW9QF5bYYsewKfGmL_E,12719
|
|
3001
3001
|
psychopy/tools/fontmanager.py,sha256=KOrPnYNrC9yo3gDD4dsZT3ru6asTzphwH7kJRzB_vKE,37100
|
|
3002
|
-
psychopy/tools/gltools.py,sha256=
|
|
3002
|
+
psychopy/tools/gltools.py,sha256=pbtdWy8qEWyl9LkLLnWozVpFLvlnJcMOgU9XezuVY8A,242062
|
|
3003
3003
|
psychopy/tools/imagetools.py,sha256=Rf6VWotcYHa7wPIqqqTlBYEBHIEyH34dmuPlFfr4CaM,1625
|
|
3004
3004
|
psychopy/tools/linebreak.py,sha256=heKftuXnOn2_OVev4_b-HFUWfEp-8NwbNVCQoEhlWYg,9888
|
|
3005
3005
|
psychopy/tools/mathtools.py,sha256=2X7DQtdnmw2NaAHLasOt0_w06Om_E7JJRKptu_CFNbE,164409
|
|
@@ -3041,7 +3041,7 @@ psychopy/visual/filters.py,sha256=PHROKhnJ2bOAYN0s3VlykuQWTVjwQ9mepnSSpAV6o1g,14
|
|
|
3041
3041
|
psychopy/visual/form.py,sha256=31PEpdFzDZxprvaeafFNiq_1acTVWdhdGIY94XkaMvg,44062
|
|
3042
3042
|
psychopy/visual/globalVars.py,sha256=ZtChs6BDZYGC2s5F1eU76LlyInEutUm176WGJ7jsdQY,575
|
|
3043
3043
|
psychopy/visual/grating.py,sha256=TLs0XIkxpmSh80r_5d18HsnJcIay4ZCEkId_djXJn1I,22635
|
|
3044
|
-
psychopy/visual/helpers.py,sha256=
|
|
3044
|
+
psychopy/visual/helpers.py,sha256=IuXp_8C936497u0rtCXAWdy6R2GiiOhZIMCDfmaXakc,13047
|
|
3045
3045
|
psychopy/visual/image.py,sha256=UK-WkkodVtgQvpTlbUlCRlYqS5l8OXfZ8cKLw6y3ik4,18732
|
|
3046
3046
|
psychopy/visual/line.py,sha256=JiZmyTr9_rTK3BSuyWEpLhTq0Et7Hnd9on4zUs-n_M0,8127
|
|
3047
3047
|
psychopy/visual/movie.py,sha256=J-br2vidy6VOGCH4xUvexRHmLH3uvzTMIzX68AxBKlI,353
|
|
@@ -3081,7 +3081,7 @@ psychopy/visual/textbox/textureatlas.py,sha256=Vrm4Ov081fhYMTO7rJJUWM18GZEC46Ovs
|
|
|
3081
3081
|
psychopy/visual/textbox2/__init__.py,sha256=O0D0zC-6iQIH4HHYXTtqL5teXQdxRFbkJFuoOmiFd7E,87
|
|
3082
3082
|
psychopy/visual/textbox2/textbox2.py,sha256=O_lcPGWpLsRUR4Wry41iX0qDRZPchJ0M0DVQv_7Ya3w,73698
|
|
3083
3083
|
psychopy/visual/vlcmoviestim.py,sha256=fw2G1PEjgojik84JzRTRVL97lWc1BNPMz5RmIdetMdY,42414
|
|
3084
|
-
psychopy/visual/window.py,sha256=
|
|
3084
|
+
psychopy/visual/window.py,sha256=Lvu7JnX1CKiJx5d-XH6zd7MP3YjtTcncxIJvuvA3o6A,150019
|
|
3085
3085
|
psychopy/visual/windowframepack.py,sha256=KfSkAI2x33I6p6MF3PZIZ0rJmb0yOfro7Kf5BydTDYw,3260
|
|
3086
3086
|
psychopy/visual/windowwarp.py,sha256=T0n4IakdDx69GL7qy4A5nBUlB-BRkzPaup6WzE7TknI,18099
|
|
3087
3087
|
psychopy/voicekey/__init__.py,sha256=7DXy522gtXmVB9hOUr9SnLXXdhFrPDNRR-WK8LDqQpc,25258
|
|
@@ -3091,4 +3091,4 @@ psychopy/voicekey/parallel_vks.py,sha256=I6a07GvN0Q2k9xidl9YbEUDORG2v9l2H_5Owbpw
|
|
|
3091
3091
|
psychopy/voicekey/signal.py,sha256=Mk363qVsvJampVDfsOTdGq7lPESlKmogmNFqasdghJE,1013
|
|
3092
3092
|
psychopy/voicekey/vk_tools.py,sha256=pFvOvF9b9CfS-JkZ_fv38LxI59hJXQqiz9ymcrJiAFc,8483
|
|
3093
3093
|
psychopy/web.py,sha256=9_V4rJhP7fc5AZg5RLt8LgEn4MgRaPAwU9BooiTPU34,10328
|
|
3094
|
-
psychopy-2025.1.
|
|
3094
|
+
psychopy-2025.1.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|