This is an automated email from the ASF dual-hosted git repository. isapego pushed a commit to branch ignite-27988 in repository https://gitbox.apache.org/repos/asf/ignite-3.git
commit 66cb9295461b09faf9ad3ae27ddac81355c2a187 Author: Igor Sapego <[email protected]> AuthorDate: Thu Feb 26 16:10:22 2026 +0100 IGNITE-27988 Fix paths everywhere --- .github/workflows/python_dbapi_wheels.yml | 12 ++++++------ .teamcity/test/platform_tests/PlatformPythonTestsLinux.kt | 2 +- modules/platforms/build.gradle | 2 +- modules/platforms/python/dbapi/setup.py | 2 +- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/python_dbapi_wheels.yml b/.github/workflows/python_dbapi_wheels.yml index b0a8e8feb75..82a3a22caf8 100644 --- a/.github/workflows/python_dbapi_wheels.yml +++ b/.github/workflows/python_dbapi_wheels.yml @@ -3,7 +3,7 @@ name: "Build Python DB API Driver Wheels" on: push: paths: - - 'modules/platforms/python/**' + - 'modules/platforms/python/dbapi/**' - '.github/workflows/python_dbapi_wheels.yml' workflow_dispatch: @@ -27,16 +27,16 @@ jobs: run: python -m pip install --upgrade setuptools packaging>=24.2 - name: Copy C++ sources - run: cp -r modules/platforms/cpp modules/platforms/python/ + run: cp -r modules/platforms/cpp modules/platforms/python/dbapi/ - name: Build source distribution - working-directory: modules/platforms/python + working-directory: modules/platforms/python/dbapi run: python setup.py sdist --formats=gztar --dist-dir ./dist - uses: actions/upload-artifact@v4 with: name: source-distributions - path: modules/platforms/python/dist/* + path: modules/platforms/python/dbapi/dist/* build_wheels: name: Build wheels on ${{ matrix.os }} @@ -80,7 +80,7 @@ jobs: vcpkg install openssl:x64-windows-static-md - name: Build wheels ${{ matrix.os }} - run: python -m cibuildwheel --output-dir modules/platforms/python/wheels modules/platforms/python + run: python -m cibuildwheel --output-dir modules/platforms/python/dbapi/wheels modules/platforms/python/dbapi env: CIBW_BUILD: ${{ matrix.cibw_build || 'cp31{0,1,2,3,4}-*' }} CIBW_ARCHS: ${{ matrix.arch }} @@ -91,7 +91,7 @@ jobs: - uses: actions/upload-artifact@v4 with: name: cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }} - path: modules/platforms/python/wheels/*.whl + path: modules/platforms/python/dbapi/wheels/*.whl merge: runs-on: ubuntu-latest diff --git a/.teamcity/test/platform_tests/PlatformPythonTestsLinux.kt b/.teamcity/test/platform_tests/PlatformPythonTestsLinux.kt index 10cf479f42c..55ca54a7038 100644 --- a/.teamcity/test/platform_tests/PlatformPythonTestsLinux.kt +++ b/.teamcity/test/platform_tests/PlatformPythonTestsLinux.kt @@ -16,7 +16,7 @@ object PlatformPythonTestsLinux : BuildType({ name = "Platform Python Tests (Linux)" params { - text("PATH__WORKING_DIR", """%VCSROOT__IGNITE3%\modules\platforms\python""", display = ParameterDisplay.HIDDEN, allowEmpty = true) + text("PATH__WORKING_DIR", """%VCSROOT__IGNITE3%\modules\platforms\python\dbapi""", display = ParameterDisplay.HIDDEN, allowEmpty = true) param("env.IGNITE_CPP_TESTS_USE_SINGLE_NODE", "") param("env.CPP_STAGING", """%PATH__WORKING_DIR%\cpp_staging""") param("TOX_ENV", "py310") diff --git a/modules/platforms/build.gradle b/modules/platforms/build.gradle index 008b6f96359..85f0f723760 100644 --- a/modules/platforms/build.gradle +++ b/modules/platforms/build.gradle @@ -309,6 +309,6 @@ private void updateDotnetVersion(String version) { } private void updatePythonVersion(String version) { - def versionFile = file("$projectDir/python/pyignite_dbapi/_version.txt") + def versionFile = file("$projectDir/python/dbapi/pyignite_dbapi/_version.txt") versionFile.text = pythonProjectVersion(version) } diff --git a/modules/platforms/python/dbapi/setup.py b/modules/platforms/python/dbapi/setup.py index dd87b52bea4..6478a4cb2f2 100644 --- a/modules/platforms/python/dbapi/setup.py +++ b/modules/platforms/python/dbapi/setup.py @@ -139,7 +139,7 @@ def run_setup(): description='Apache Ignite 3 DB API Driver', long_description=long_description, long_description_content_type='text/markdown', - url='https://github.com/apache/ignite-3/tree/main/modules/platforms/python', + url='https://github.com/apache/ignite-3/tree/main/modules/platforms/python/dbapi', packages=setuptools.find_packages(), include_package_data=True, ext_modules=[CMakeExtension(EXTENSION_NAME)],
