We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 328c671 commit 4dc9d9aCopy full SHA for 4dc9d9a
google-fhir-views/setup.py
@@ -48,6 +48,8 @@ def main():
48
f'google-fhir-core~={version}',
49
'immutabledict~=2.2',
50
'backports.zoneinfo~=0.2.1;python_version<"3.9"',
51
+ # Pin to numpy 1 to avoid binary compatibility changes in numpy 2.
52
+ 'numpy~=1.24',
53
'pandas~=1.1',
54
'protobuf~=3.19',
55
'python-dateutil~=2.8',
run_tests.sh
@@ -23,7 +23,9 @@ python3 -m venv ./test_env
23
export FHIR_PY_VERSION=`cat VERSION`
24
25
pip install wheel
26
-pip install pytest
+
27
+# Version pinned for https://github.com/pytest-dev/pytest/issues/12275
28
+pip install pytest==8.1.2
29
30
# Create wheels and install and test them to ensure they are built correctly.
31
pip wheel ./google-fhir-core --wheel-dir wheels
0 commit comments