-
Notifications
You must be signed in to change notification settings - Fork 146
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
test_gevent is failing #1375
Comments
Fixed by #1374 |
Hi @int19h! It looks like we're still having this problem in python versions older than 3.7 in nixpkgs. Was just wondering if you had any insight for why it'd still be failing: NixOS/nixpkgs#255379 (review). Adding |
Also note that any version of debugpy >=1.6.0 doesn't support versions of Python older than 3.7, and debugpy>=1.8.0 requires python>=3.8. |
Oh yep!! We've marked python 3.8 as the minimum compatible python version in the 1.8.0 update. We were just seeing this deprecation warning in newer versions of python too. From what I can tell, it looks like the |
Yep, that's the only version for which it showed up in our CI runs. Although I believe the problem there wasn't actually with Python itself, but rather with setuptools version that is bundled with it; if it's too old, it ends up being updated to the most recent version as a transitive dependency of something else (IIRC, tox itself), causing the problem. |
Oh ok that makes sense! In nixpkgs, we package setuptools ourselves, so it would generally always be the latest version (even with older python versions). Thanks!! 😊 |
Due to warning for deprecated usage of pkg_resources in more recent versions of setuptools.
The text was updated successfully, but these errors were encountered: