Closed keflavich closed 2 years ago
This was fixed in https://github.com/astropy/pyvo/pull/283 but is not in a released version.
pyvo plans to do a release soon (@tomdonaldson).
1.2.1
has been published. It should fix this.
I've just run into this issue as well, so apparently still not fixed or re-broken?
I'm trying to install pyvo via macports; py39-astropy @5.1 (python, science) and py38-pyvo @1.3 (python).
Trying the suggested fix above, replacing the line:
from functools import partial, wraps
with
from functools import wraps
does not fix the issue.
@entaylor , is your traceback exactly the same? Please share traceback. Thanks.
Yes, the plan was to release it but we've waited until after JWST for reasons that I can't remember. @tomdonaldson might be away and I don't know how to release it but he should be able to when he's back.
Hmm, maybe time to revisit #266 !
I'm happy to help with a release, but as I recall it was stalled prior AAS due to non-backward compatible changes around the registry and those discussions might not have been wrapped up fully.
I can't import pyvo locally after pip installing. This affected both pyvo 1.1 and 1.2
@pllim this was caused by https://github.com/astropy/astropy/commit/0039c14b9873d5ad4557923d717ce8ff16fc3d88#diff-2f264c7dc050831e9739d4e4e90df88b9063a033fb8d42ef7b95b4245bb070a7, where you remove the
from functools import wraps
call.The fix is to replace
pyvo/utils/decorators.py
line 4 withfrom functools import wraps
.