-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
PYTHON-5049 Drop support for PyPy 3.9 #2070
Conversation
@@ -460,15 +460,6 @@ buildvariants: | |||
test_encryption: "true" | |||
test_encryption_pyopenssl: "true" | |||
PYTHON_BINARY: /opt/python/3.12/bin/python3 | |||
- name: encryption-rhel8-pypy3.9 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Note: there is still a pypy 3.10 variant above.
@@ -1164,17 +1135,6 @@ buildvariants: | |||
expansions: | |||
COVERAGE: coverage | |||
PYTHON_BINARY: /opt/python/3.12/bin/python3 | |||
- name: test-rhel8-pypy3.9 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same here
test/asynchronous/test_collection.py
Outdated
@@ -133,13 +133,10 @@ def test_getattr(self): | |||
|
|||
def test_iteration(self): | |||
coll = self.db.coll | |||
if "PyPy" in sys.version and sys.version_info < (3, 8, 15): | |||
msg = "'NoneType' object is not callable" | |||
if _IS_SYNC: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We can remove this if-else
block now.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed
Link failure is unrelated, |
No description provided.