Skip to content

Commit 66cb929

Browse files
committed
IGNITE-27988 Fix paths everywhere
1 parent 57840ae commit 66cb929

4 files changed

Lines changed: 9 additions & 9 deletions

File tree

.github/workflows/python_dbapi_wheels.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: "Build Python DB API Driver Wheels"
33
on:
44
push:
55
paths:
6-
- 'modules/platforms/python/**'
6+
- 'modules/platforms/python/dbapi/**'
77
- '.github/workflows/python_dbapi_wheels.yml'
88

99
workflow_dispatch:
@@ -27,16 +27,16 @@ jobs:
2727
run: python -m pip install --upgrade setuptools packaging>=24.2
2828

2929
- name: Copy C++ sources
30-
run: cp -r modules/platforms/cpp modules/platforms/python/
30+
run: cp -r modules/platforms/cpp modules/platforms/python/dbapi/
3131

3232
- name: Build source distribution
33-
working-directory: modules/platforms/python
33+
working-directory: modules/platforms/python/dbapi
3434
run: python setup.py sdist --formats=gztar --dist-dir ./dist
3535

3636
- uses: actions/upload-artifact@v4
3737
with:
3838
name: source-distributions
39-
path: modules/platforms/python/dist/*
39+
path: modules/platforms/python/dbapi/dist/*
4040

4141
build_wheels:
4242
name: Build wheels on ${{ matrix.os }}
@@ -80,7 +80,7 @@ jobs:
8080
vcpkg install openssl:x64-windows-static-md
8181
8282
- name: Build wheels ${{ matrix.os }}
83-
run: python -m cibuildwheel --output-dir modules/platforms/python/wheels modules/platforms/python
83+
run: python -m cibuildwheel --output-dir modules/platforms/python/dbapi/wheels modules/platforms/python/dbapi
8484
env:
8585
CIBW_BUILD: ${{ matrix.cibw_build || 'cp31{0,1,2,3,4}-*' }}
8686
CIBW_ARCHS: ${{ matrix.arch }}
@@ -91,7 +91,7 @@ jobs:
9191
- uses: actions/upload-artifact@v4
9292
with:
9393
name: cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }}
94-
path: modules/platforms/python/wheels/*.whl
94+
path: modules/platforms/python/dbapi/wheels/*.whl
9595

9696
merge:
9797
runs-on: ubuntu-latest

.teamcity/test/platform_tests/PlatformPythonTestsLinux.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ object PlatformPythonTestsLinux : BuildType({
1616
name = "Platform Python Tests (Linux)"
1717

1818
params {
19-
text("PATH__WORKING_DIR", """%VCSROOT__IGNITE3%\modules\platforms\python""", display = ParameterDisplay.HIDDEN, allowEmpty = true)
19+
text("PATH__WORKING_DIR", """%VCSROOT__IGNITE3%\modules\platforms\python\dbapi""", display = ParameterDisplay.HIDDEN, allowEmpty = true)
2020
param("env.IGNITE_CPP_TESTS_USE_SINGLE_NODE", "")
2121
param("env.CPP_STAGING", """%PATH__WORKING_DIR%\cpp_staging""")
2222
param("TOX_ENV", "py310")

modules/platforms/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -309,6 +309,6 @@ private void updateDotnetVersion(String version) {
309309
}
310310

311311
private void updatePythonVersion(String version) {
312-
def versionFile = file("$projectDir/python/pyignite_dbapi/_version.txt")
312+
def versionFile = file("$projectDir/python/dbapi/pyignite_dbapi/_version.txt")
313313
versionFile.text = pythonProjectVersion(version)
314314
}

modules/platforms/python/dbapi/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ def run_setup():
139139
description='Apache Ignite 3 DB API Driver',
140140
long_description=long_description,
141141
long_description_content_type='text/markdown',
142-
url='https://github.com/apache/ignite-3/tree/main/modules/platforms/python',
142+
url='https://github.com/apache/ignite-3/tree/main/modules/platforms/python/dbapi',
143143
packages=setuptools.find_packages(),
144144
include_package_data=True,
145145
ext_modules=[CMakeExtension(EXTENSION_NAME)],

0 commit comments

Comments
 (0)