From ebcc782d6ad77f47837a7da5db0a9dde9af6e196 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 17 Sep 2026 21:31:31 +0000 Subject: [PATCH 1/2] oracledb: Add version 26.0.0 Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- docs/packages/oracledb.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/packages/oracledb.yaml b/docs/packages/oracledb.yaml index 750cc953e7..6caae28fc8 100644 --- a/docs/packages/oracledb.yaml +++ b/docs/packages/oracledb.yaml @@ -14,3 +14,4 @@ versions: - filename: oracledb-4.0.2-cp314-cp314-manylinux_2_38_riscv64.manylinux_2_39_riscv64.whl sha256: e444cddf873e61b151c0297b98fa7e2b934bbd73153f027e3e965435434b24da requires-python: '>=3.9' +- version: 26.0.0 From 24f873e14b659b85ab5f67609a91b51c1d45985f Mon Sep 17 00:00:00 2001 From: Ludovic Henry Date: Fri, 18 Sep 2026 13:02:28 +0000 Subject: [PATCH 2/2] oracledb: fix test paths/names for 26.0.0 test suite reorg Upstream 26.0.0 split tests/test_NNNN_*.py into subdirectories (tests/misc/, tests/data_types/, ...) and renumbered/renamed several files. The five modules used for connection-less riscv64 testing move and rename accordingly, and the single test needing a live connection is now test_misc_1009 (was test_1009). Co-Authored-By: Claude Sonnet 5 Claude-Session: https://claude.ai/code/session_011RwtHNpuiuiCk4MstTLu8m --- .github/workflows/build-oracledb.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build-oracledb.yml b/.github/workflows/build-oracledb.yml index 501b8ab6f0..29525ee00e 100644 --- a/.github/workflows/build-oracledb.yml +++ b/.github/workflows/build-oracledb.yml @@ -85,13 +85,13 @@ jobs: CIBW_TEST_REQUIRES: pytest numpy pandas CIBW_TEST_SOURCES: tests # Upstream's suite needs a live Oracle Database, which has no riscv64 build. - # These five modules pass without one; test_1009 is the only test in them - # that opens a connection. + # These five modules pass without one; test_misc_1009 is the only test in + # them that opens a connection. CIBW_TEST_COMMAND: >- - python -m pytest -k "not test_1009" - tests/test_1000_module.py tests/test_1500_types.py - tests/test_4500_connect_params.py tests/test_4700_pool_params.py - tests/test_7200_tnsnames.py + python -m pytest -k "not test_misc_1009" + tests/misc/test_1000_module.py tests/data_types/test_1200_types.py + tests/misc/test_1300_connect_params.py tests/misc/test_1400_pool_params.py + tests/misc/test_1500_tnsnames.py - name: Check the extension modules made it into the wheel run: |