Skip to content

Commit 41c919c

Browse files
authored
Bump to v0.12.3 and clean-up scripts & docs (#890)
* Bump version to 0.12.3rc0 * Bump to v0.12.3 and clean-up scripts & docs
1 parent 11e159f commit 41c919c

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

docs/internal/publishing.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,11 @@ This will start the Mesop dev server and you can test that hot reload works.
3939
### Gunicorn integration
4040

4141
```sh
42-
pip install gunicorn && gunicorn main:me
42+
gunicorn main:me
4343
```
4444

45+
> Note: `gunicorn` should already be installed by the shell script above.
46+
4547
## Upload to PyPI
4648

4749
If the testing above looks good, then continue with uploading to PyPI.

mesop/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Contains the version string."""
22

3-
VERSION = "0.12.2"
3+
VERSION = "0.12.3"
44

55
if __name__ == "__main__":
66
print(VERSION)

scripts/pip.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@ fi
2424
virtualenv --python python3 /tmp/mesoprelease-test/venv-test && \
2525
source /tmp/mesoprelease-test/venv-test/bin/activate && \
2626
uv pip install --upgrade pip && \
27-
uv pip install -r mesop/pip_package/requirements.txt --no-binary pydantic && \
27+
uv pip install -r mesop/pip_package/requirements.txt && \
28+
uv pip install gunicorn && \
2829
bazel run //mesop/pip_package:build_pip_package -- /tmp/mesoprelease-test/mesop.tar.gz && \
2930
cp -r ./scripts/smoketest_app /tmp/mesoprelease-test && \
3031
# Do "-P" so that it follows the physical path so that

0 commit comments

Comments
 (0)