Skip to content

Commit be4f01d

Browse files
committed
Remove now unnecessary hacks from pydantic-core downstream test
1 parent d659d16 commit be4f01d

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

mx.graalpython/downstream_tests.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -163,10 +163,7 @@ def downstream_test_pydantic_core(graalpy, testdir):
163163
run(['git', 'clone', 'https://github.com/pydantic/pydantic-core.git', '-b', 'main'], cwd=testdir)
164164
src = testdir / 'pydantic-core'
165165
run(['uv', 'sync', '--python', graalpy, '--group', 'testing'], cwd=src)
166-
# XXX UNSAFE_PYO3_SKIP_VERSION_CHECK should not be necessary once pydantic-core updates to a newer pyo3 version
167-
run(['uv', 'pip', 'install', '-e', '.'], cwd=src, env={**os.environ, 'UNSAFE_PYO3_SKIP_VERSION_CHECK': '1'})
168-
# XXX remove after pydantic-core updates to hypothesis >= 6.136.7
169-
run(['uv', 'pip', 'install', 'hypothesis==6.136.7'], cwd=src)
166+
run(['uv', 'pip', 'install', '-e', '.'], cwd=src)
170167
run(['uv', 'run', 'pytest', '-v', '--tb=short'], cwd=src)
171168

172169

0 commit comments

Comments
 (0)