Skip to content

Commit 67de9c7

Browse files
authored
Build fixups (#1462)
* (Ironically) ignore build script during package publication: - Avoids platform-specific wheels. - Ensures build script is not included in sdist. * Remove legacy Node package build, now that poetry is leading. * Run builds also for PR's to release branches. The road to hell is paved with dirty workarounds.
1 parent 939fb99 commit 67de9c7

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-6
lines changed

.github/workflows/ci.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ on:
44
workflow_call:
55
workflow_dispatch:
66
pull_request:
7-
branches: [main, dev]
7+
branches: [main, dev, 'release/**']
88
push:
9-
branches: [main, dev]
9+
branches: [main, dev, 'release/**']
1010

1111
permissions: read-all
1212

.github/workflows/publish.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,9 @@ jobs:
3434
name: Install Python, poetry and Python dependencies
3535
with:
3636
poetry-working-directory: ${{ env.BACKEND_DIR }}
37+
- name: Build Python distribution
38+
run: poetry self add poetry-plugin-ignore-build-script && poetry build --ignore-build-script
39+
working-directory: ${{ env.BACKEND_DIR }}
3740
- name: Publish package distributions to PyPI
3841
uses: pypa/gh-action-pypi-publish@release/v1
3942
with:

backend/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Chainlit is an open-source async Python framework which allows developers to bui
1818

1919
Full documentation is available [here](https://docs.chainlit.io). You can ask Chainlit related questions to [Chainlit Help](https://help.chainlit.io/), an app built using Chainlit!
2020

21-
> [!NOTE]
21+
> [!NOTE]
2222
> Check out [Literal AI](https://literalai.com), our product to monitor and evaluate LLM applications! It works with any Python or TypeScript applications and [seamlessly](https://docs.chainlit.io/data-persistence/overview) with Chainlit by adding a `LITERAL_API_KEY` in your project.
2323
>
2424
> Chainlit is developed and maintained by the Literal AI team, which is currently focused on expanding the capabilities of Literal AI. While we continue to support and maintain Chainlit, we are also committed to enabling the community to contribute, particularly in areas like integrations and data layers.
@@ -43,7 +43,7 @@ If this opens the `hello app` in your browser, you're all set!
4343
The latest in-development version can be installed straight from GitHub with:
4444

4545
```sh
46-
pip install git+https://github.com/Chainlit/chainlit.git@dokterbob/build_frontend_on_poetry_build#subdirectory=backend/
46+
pip install git+https://github.com/Chainlit/chainlit.git#subdirectory=backend/
4747
```
4848

4949
(Requires Node and pnpm installed on the system.)

package.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,7 @@
2525
"formatUi": "cd frontend && pnpm run format",
2626
"lintPython": "cd backend && poetry run mypy chainlit/ tests/",
2727
"formatPython": "black `git ls-files | grep '.py$'` && isort --profile=black .",
28-
"buildUi": "cd libs/react-client && pnpm run build && cd ../copilot && pnpm run build && cd ../../frontend && pnpm run build",
29-
"build": "pnpm run buildUi && (mkdir -p backend/chainlit/frontend && cp -R frontend/dist backend/chainlit/frontend) && (mkdir -p backend/chainlit/copilot && cp -R libs/copilot/dist backend/chainlit/copilot) && (cd backend && poetry build)"
28+
"buildUi": "cd libs/react-client && pnpm run build && cd ../copilot && pnpm run build && cd ../../frontend && pnpm run build"
3029
},
3130
"pnpm": {
3231
"overrides": {

0 commit comments

Comments
 (0)