diff --git a/docs/internal/publishing.md b/docs/internal/publishing.md index 4de825a3..77915677 100644 --- a/docs/internal/publishing.md +++ b/docs/internal/publishing.md @@ -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. diff --git a/mesop/version.py b/mesop/version.py index 6d4e2ac9..394c5327 100644 --- a/mesop/version.py +++ b/mesop/version.py @@ -1,6 +1,6 @@ """Contains the version string.""" -VERSION = "0.12.2" +VERSION = "0.12.3" if __name__ == "__main__": print(VERSION) diff --git a/scripts/pip.sh b/scripts/pip.sh index fe190737..afde8281 100755 --- a/scripts/pip.sh +++ b/scripts/pip.sh @@ -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