Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

buildlsp in release; v0.1.16 #143

Merged
merged 1 commit into from
Sep 22, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,9 @@ jobs:
- name: 📦 Build frontend
run: ./scripts/buildfrontend.sh

- name: 📦 Build lsp
run: ./scripts/buildlsp.sh

- name: 🐍 Setup Python 3.10
uses: actions/setup-python@v4
with:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/test_cli.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,9 @@ jobs:
- name: 📦 Build frontend
run: ./scripts/buildfrontend.sh

- name: 📦 Build lsp
run: ./scripts/buildlsp.sh

- name: 🐍 Setup Python 3.10
uses: actions/setup-python@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion marimo/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"ui",
"vstack",
]
__version__ = "0.1.15"
__version__ = "0.1.16"

from marimo._ast.app import App
from marimo._output.doc import doc
Expand Down
Loading