Skip to content

Commit

Permalink
Bump to v0.12.3 and clean-up scripts & docs (#890)
Browse files Browse the repository at this point in the history
* Bump version to 0.12.3rc0
* Bump to v0.12.3 and clean-up scripts & docs
  • Loading branch information
wwwillchen authored Aug 29, 2024
1 parent 11e159f commit 41c919c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
4 changes: 3 additions & 1 deletion docs/internal/publishing.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,11 @@ This will start the Mesop dev server and you can test that hot reload works.
### Gunicorn integration

```sh
pip install gunicorn && gunicorn main:me
gunicorn main:me
```

> Note: `gunicorn` should already be installed by the shell script above.
## Upload to PyPI

If the testing above looks good, then continue with uploading to PyPI.
Expand Down
2 changes: 1 addition & 1 deletion mesop/version.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Contains the version string."""

VERSION = "0.12.2"
VERSION = "0.12.3"

if __name__ == "__main__":
print(VERSION)
3 changes: 2 additions & 1 deletion scripts/pip.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ fi
virtualenv --python python3 /tmp/mesoprelease-test/venv-test && \
source /tmp/mesoprelease-test/venv-test/bin/activate && \
uv pip install --upgrade pip && \
uv pip install -r mesop/pip_package/requirements.txt --no-binary pydantic && \
uv pip install -r mesop/pip_package/requirements.txt && \
uv pip install gunicorn && \
bazel run //mesop/pip_package:build_pip_package -- /tmp/mesoprelease-test/mesop.tar.gz && \
cp -r ./scripts/smoketest_app /tmp/mesoprelease-test && \
# Do "-P" so that it follows the physical path so that
Expand Down

0 comments on commit 41c919c

Please sign in to comment.