You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm packaging your module as an rpm package so I'm using the typical PEP517 based build, install and test cycle used on building packages from non-root account.
python3 -sBm build -w --no-isolation
because I'm calling build with --no-isolation I'm using during all processes only locally installed modules
install .whl file in </install/prefix>
run pytest with PYTHONPATH pointing to sitearch and sitelib inside </install/prefix>
I was able to recreate your error by installing the latest version of mypy and running python3 -m mypy --incremental --ignore-missing-imports rsa/
as is done in the tests. You should be able to resolve it by using the version of mypy specified in pyproject.toml at the moment: pip3 install mypy=="0.910" --upgrade
However, we should address this issue more meaningfully at some point since we will eventually update the mypy version. I think this can be done with the abstractmethod decorator. I will continue to look at this.
I've alredy added those unite to --deselct list assuming that it must be only test suite issue so .. no rush/take your time 😄
Thank you for the update 👍
I'm packaging your module as an rpm package so I'm using the typical PEP517 based build, install and test cycle used on building packages from non-root account.
python3 -sBm build -w --no-isolation
build
with--no-isolation
I'm using during all processes only locally installed modulesHere is pytest output:
Here is list of installed modules in build env
The text was updated successfully, but these errors were encountered: