Fixed installing of the package. I used pip install -e . inside the repo folder to test that it did'nt worked before and now works.
Tested this in python 3.10.
Error I got before was:
Traceback (most recent call last):
File "<string>", line 2, in <module>
File "<pip-setuptools-caller>", line 34, in <module>
File "/home/my/cool/path/label-studio-sdk/setup.py", line 16, in <module>
version = re.search(r'__version__ = "(.*?)"', f.read()).group(1)
AttributeError: 'NoneType' object has no attribute 'group'
Fixed installing of the package. I used
pip install -e .
inside the repo folder to test that it did'nt worked before and now works. Tested this in python 3.10.Error I got before was: