Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
eabatalov committed Jan 7, 2025
1 parent 8d7d0b7 commit ac594f9
Show file tree
Hide file tree
Showing 12 changed files with 20 additions and 19 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish_indexify_pypi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
with:
python-version: "3.9"
- name: Install Poetry
run: pipx install poetry
run: pipx install --force 'poetry==2.0.0'
- name: Build python-sdk
run: make build
- name: Publish Indexify to PyPI
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Install poetry
run: pipx install poetry
run: pipx install --force 'poetry==2.0.0'
- name: Setup Python
uses: actions/setup-python@v5
with:
Expand Down Expand Up @@ -112,7 +112,7 @@ jobs:
# with:
# name: indexify-server
- name: Install poetry
run: pipx install poetry
run: pipx install --force 'poetry==2.0.0'
- name: Setup Python
uses: actions/setup-python@v5
with:
Expand Down Expand Up @@ -144,6 +144,7 @@ jobs:
# log-output-if: true
- name: Start Indexify Executor
run: |
poetry --version
ls
cd function_executor
make build
Expand Down Expand Up @@ -274,7 +275,7 @@ jobs:
# always logging the output to debug test failures.
log-output-if: true
- name: Install poetry
run: pipx install poetry
run: pipx install --force 'poetry==2.0.0'
- name: Setup Python
uses: actions/setup-python@v5
with:
Expand Down
4 changes: 2 additions & 2 deletions executor/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ readme = "README.md"
homepage = "https://github.com/tensorlakeai/indexify"
repository = "https://github.com/tensorlakeai/indexify"
packages = [
{ include = "executor", from="src" },
{ include = "executor", from="src", format = ["sdist", "wheel"] },
]

[tool.poetry.dependencies]
Expand All @@ -27,5 +27,5 @@ black = "^24.10.0"
pylint = "^2.4.0"

[build-system]
requires = ["poetry>=1.2"]
requires = ["poetry==2.0.0"]
build-backend = "poetry.core.masonry.api"
2 changes: 1 addition & 1 deletion executor/tests/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ python = "^3.9"
indexify-executor = { path = "..", develop = true }

[build-system]
requires = ["poetry>=1.2"]
requires = ["poetry==2.0.0"]
build-backend = "poetry.core.masonry.api"
4 changes: 2 additions & 2 deletions function_executor/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ readme = "README.md"
homepage = "https://github.com/tensorlakeai/indexify"
repository = "https://github.com/tensorlakeai/indexify"
packages = [
{ include = "function_executor", from="src" },
{ include = "function_executor", from="src", format = ["sdist", "wheel"] },
]

[tool.poetry.scripts]
Expand All @@ -30,5 +30,5 @@ black = "^24.10.0"
pylint = "^2.4.0"

[build-system]
requires = ["poetry>=1.2"]
requires = ["poetry==2.0.0"]
build-backend = "poetry.core.masonry.api"
2 changes: 1 addition & 1 deletion function_executor/tests/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ indexify-python-sdk = { path = "../../python-sdk", develop = true }
indexify-function-executor = { path = "..", develop = true }

[build-system]
requires = ["poetry>=1.2"]
requires = ["poetry==2.0.0"]
build-backend = "poetry.core.masonry.api"
4 changes: 2 additions & 2 deletions indexify/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ readme = "README.md"
homepage = "https://github.com/tensorlakeai/indexify"
repository = "https://github.com/tensorlakeai/indexify"
packages = [
{ include = "cli", from="src" },
{ include = "cli", from="src", format = ["sdist", "wheel"] },
]

[tool.poetry.scripts]
Expand All @@ -32,5 +32,5 @@ black = "^24.10.0"
pylint = "^2.4.0"

[build-system]
requires = ["poetry>=1.2"]
requires = ["poetry==2.0.0"]
build-backend = "poetry.core.masonry.api"
2 changes: 1 addition & 1 deletion indexify/tests/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@ parameterized = "^0.9.0"
indexify = { path = "..", develop = true }

[build-system]
requires = ["poetry>=1.2"]
requires = ["poetry==2.0.0"]
build-backend = "poetry.core.masonry.api"
4 changes: 2 additions & 2 deletions python-sdk/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ readme = "README.md"
homepage = "https://github.com/tensorlakeai/indexify"
repository = "https://github.com/tensorlakeai/indexify"
packages = [
{ include = "indexify", from="src" },
{ include = "indexify", from="src", format = ["sdist", "wheel"] },
]

[tool.poetry.dependencies]
Expand All @@ -28,5 +28,5 @@ black = "^24.10.0"
pylint = "^2.4.0"

[build-system]
requires = ["poetry>=1.2"]
requires = ["poetry==2.0.0"]
build-backend = "poetry.core.masonry.api"
2 changes: 1 addition & 1 deletion python-sdk/tests/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ parameterized = "^0.9.0"
indexify-python-sdk = { path = "..", develop = true }

[build-system]
requires = ["poetry>=1.2"]
requires = ["poetry==2.0.0"]
build-backend = "poetry.core.masonry.api"
4 changes: 2 additions & 2 deletions python_utils/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ readme = "README.md"
homepage = "https://github.com/tensorlakeai/indexify"
repository = "https://github.com/tensorlakeai/indexify"
packages = [
{ include = "python_utils", from="src" },
{ include = "python_utils", from="src", format = ["sdist", "wheel"] },
]

[tool.poetry.dependencies]
Expand All @@ -22,5 +22,5 @@ black = "^24.10.0"
pylint = "^2.4.0"

[build-system]
requires = ["poetry>=1.2"]
requires = ["poetry==2.0.0"]
build-backend = "poetry.core.masonry.api"
2 changes: 1 addition & 1 deletion python_utils/tests/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ python = "^3.9"
indexify-python-utils = { path = "..", develop = true }

[build-system]
requires = ["poetry>=1.2"]
requires = ["poetry==2.0.0"]
build-backend = "poetry.core.masonry.api"

0 comments on commit ac594f9

Please sign in to comment.