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 ab6882b commit 881503aCopy full SHA for 881503a
ci/cibuildwheel.yaml
ci/run_tests_pipeline.yaml
@@ -68,3 +68,22 @@ stages:
68
JAVA_HOME: $(JAVA_HOME_11_X64)
69
QDB_REPO_PATH: './questdb'
70
condition: eq(variables.vsQuestDbMaster, true)
71
+ - job: TestsAgainstVariousNumpy
72
+ pool:
73
+ name: "Azure Pipelines"
74
+ vmImage: "ubuntu-latest"
75
+ timeoutInMinutes: 45
76
+ steps:
77
+ - checkout: self
78
+ fetchDepth: 1
79
+ lfs: false
80
+ submodules: true
81
+ - task: UsePythonVersion@0
82
+ - script: |
83
+ python3 --version
84
+ python3 -m pip install uv
85
+ sudo apt-get install -y libopenblas-dev pkg-config
86
+ uv python list
87
+ displayName: "Install uv"
88
+ - script: uv run --with 'numpy==1.26.0' test/test.py -v TestBufferProtocolVersionV2
89
+ displayName: "Test vs numpy 1.26"
0 commit comments