Commit 41c919c 1 parent 11e159f commit 41c919c Copy full SHA for 41c919c
File tree 3 files changed +6
-3
lines changed
3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -39,9 +39,11 @@ This will start the Mesop dev server and you can test that hot reload works.
39
39
### Gunicorn integration
40
40
41
41
``` sh
42
- pip install gunicorn && gunicorn main:me
42
+ gunicorn main:me
43
43
```
44
44
45
+ > Note: ` gunicorn ` should already be installed by the shell script above.
46
+
45
47
## Upload to PyPI
46
48
47
49
If the testing above looks good, then continue with uploading to PyPI.
Original file line number Diff line number Diff line change 1
1
"""Contains the version string."""
2
2
3
- VERSION = "0.12.2 "
3
+ VERSION = "0.12.3 "
4
4
5
5
if __name__ == "__main__" :
6
6
print (VERSION )
Original file line number Diff line number Diff line change 24
24
virtualenv --python python3 /tmp/mesoprelease-test/venv-test && \
25
25
source /tmp/mesoprelease-test/venv-test/bin/activate && \
26
26
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 && \
28
29
bazel run //mesop/pip_package:build_pip_package -- /tmp/mesoprelease-test/mesop.tar.gz && \
29
30
cp -r ./scripts/smoketest_app /tmp/mesoprelease-test && \
30
31
# Do "-P" so that it follows the physical path so that
You can’t perform that action at this time.
0 commit comments