Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
change
sglang
Commits
25c881a0
Unverified
Commit
25c881a0
authored
Jul 25, 2024
by
Yineng Zhang
Committed by
GitHub
Jul 25, 2024
Browse files
chore: bump v0.1.25 (#725)
parent
04ec6ba2
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
32 additions
and
3 deletions
+32
-3
.github/workflows/pypi.yml
.github/workflows/pypi.yml
+28
-0
python/pyproject.toml
python/pyproject.toml
+1
-1
python/sglang/__init__.py
python/sglang/__init__.py
+2
-2
python/sglang/version.py
python/sglang/version.py
+1
-0
No files found.
.github/workflows/pypi.yml
0 → 100644
View file @
25c881a0
name
:
publish to pypi
on
:
push
:
branches
:
-
main
paths
:
-
"
python/sglang/version.py"
workflow_dispatch
:
jobs
:
publish
:
runs-on
:
ubuntu-latest
environment
:
'
prod'
steps
:
-
name
:
Set up python3.8
uses
:
actions/setup-python@v4
with
:
python-version
:
'
3.8'
-
name
:
Checkout repository
uses
:
actions/checkout@v3
-
name
:
Upload to pypi
run
:
|
cd python
cp ../README.md ../LICENSE .
pip install build
python3 -m build
pip install twine
python3 -m twine upload dist/* -u __token__ -p ${{ secrets.PYPI_TOKEN }}
python/pyproject.toml
View file @
25c881a0
...
...
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
[project]
name
=
"sglang"
version
=
"0.1.2
4
"
version
=
"0.1.2
5
"
description
=
"SGLang is yet another fast serving framework for large language models and vision language models."
readme
=
"README.md"
requires-python
=
">=3.8"
...
...
python/sglang/__init__.py
View file @
25c881a0
__version__
=
"0.1.24"
# SGL API Components
from
sglang.api
import
(
Runtime
,
...
...
@@ -32,6 +30,8 @@ from sglang.lang.backend.openai import OpenAI
from
sglang.lang.backend.runtime_endpoint
import
RuntimeEndpoint
from
sglang.lang.backend.vertexai
import
VertexAI
from
.version
import
__version__
# public APIs management
__all__
=
[
"global_config"
,
...
...
python/sglang/version.py
0 → 100644
View file @
25c881a0
__version__
=
"0.1.25"
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment