-
Notifications
You must be signed in to change notification settings - Fork 516
New issue
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
Investigate errors in daily Python 3.7 and Python 3.10 errors #2072
Comments
@Jsyro — here is the task for you to look at. I’ll see if I can make you an assignee, and will be adding you to the Hyperledger organization so that for sure you can be added to future tickets. |
Initial investigation: 3.10 (INDY and normal), 3.7 (INDY and normal), Flake 8 is checking and thinks it's finding attribute errors, maybe it's legit, but probably there is a type checking issue with this error. |
|
The code uses the Which internally uses deprecated version of defining async functions. The 3.8 and 3.9 test results include the relevant deprecation warning to use Rapptz/discord.py#375 (comment) Looks like we will need to refactor out that library for find a suitable replacement. |
Related: #1717 |
Tests rely on this library, https://github.com/nvllsvm/async_case.... which is incompatible with newer versions of asyncio that do not accept the https://docs.python.org/3.10/whatsnew/3.10.html#changes-in-the-python-api Unsure how to proceed, could update the lib, but unclear if that would break older versions, could refactor and remove dependency on the library, but the related tests are quite dense. |
We are running the integration tests for Python 3.6 - 3.10 and currently we are getting errors for Python 3.7 and Python 3.10.
Investigate the errors and solve at least the 3.10 issue, and ideally both.
Example error run here
The text was updated successfully, but these errors were encountered: