We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This code:
hklpy/hkl/tests/test_save_restore_UB.py
Lines 28 to 30 in 782b8ae
triggers this exception in Py3.11 CI:
2024-05-23T17:36:41.4183877Z descriptor = <slot wrapper '__call__' of 'type' objects> 2024-05-23T17:36:41.4184587Z obj = <property object at 0x7f6832ff93f0> 2024-05-23T17:36:41.4184989Z 2024-05-23T17:36:41.4185183Z def _descriptor_get(descriptor, obj): 2024-05-23T17:36:41.4185749Z if isclass(descriptor): 2024-05-23T17:36:41.4186242Z return descriptor 2024-05-23T17:36:41.4186914Z get = getattr(type(descriptor), '__get__', _sentinel) 2024-05-23T17:36:41.4187643Z if get is _sentinel: 2024-05-23T17:36:41.4188104Z return descriptor 2024-05-23T17:36:41.4188630Z > return get(descriptor, obj, type(obj)) 2024-05-23T17:36:41.4189711Z E TypeError: descriptor '__call__' for 'type' objects doesn't apply to a 'property' object 2024-05-23T17:36:41.4190472Z 2024-05-23T17:36:41.4191067Z ../../../micromamba/envs/hklpy-test-py-3.11/lib/python3.11/inspect.py:2432: TypeError 2024-05-23T17:36:41.4192165Z ______________ ERROR at setup of test_fourc_run_orientation_info _______________
The text was updated successfully, but these errors were encountered:
Root cause is installation of databroker 2.0.0b40 in the workflow.
Project dependencies:
hklpy/pyproject.toml
Lines 50 to 59 in 782b8ae
Workflow installs Python with these additional dependencies:
hklpy/.github/workflows/conda_unit_test.yml
Lines 44 to 48 in 782b8ae
Could pin databroker=1.2 in the workflow.
databroker=1.2
Sorry, something went wrong.
related:
More a problem about what code is used to subscribe to the RE documents.
RE
prjemian
No branches or pull requests
This code:
hklpy/hkl/tests/test_save_restore_UB.py
Lines 28 to 30 in 782b8ae
triggers this exception in Py3.11 CI:
The text was updated successfully, but these errors were encountered: