diff --git a/.github/actions/setup-project/action.yml b/.github/actions/setup-project/action.yml index 02b0c4dbc..e2b6cf1c6 100644 --- a/.github/actions/setup-project/action.yml +++ b/.github/actions/setup-project/action.yml @@ -9,10 +9,10 @@ runs: sudo apt-get update \ && sudo apt-get install -y --no-install-recommends \ libcurl4-openssl-dev - - name: Set up Python 3.13.1 + - name: Set up Python 3.13.3 uses: actions/setup-python@v4 with: - python-version: "3.13.1" + python-version: "3.13.3" - name: Install poetry shell: bash run: pip install poetry==2.1.3 diff --git a/README.md b/README.md index 70b3dccc8..193075436 100644 --- a/README.md +++ b/README.md @@ -259,12 +259,12 @@ git clone git@github.com:GSA/notifications-api.git Now go into the project directory (`notifications-api` by default), create a virtual environment, and set the local Python version to point to the virtual -environment (assumes version Python `3.13.1` is what is installed on your +environment (assumes version Python `3.13.3` is what is installed on your machine): ```sh cd notifications-api -pyenv virtualenv 3.13.1 notify-api +pyenv virtualenv 3.13.3 notify-api pyenv local notify-api ``` @@ -329,7 +329,7 @@ environment with the newer version of Python you just installed: ```sh cd notifications-api -pyenv virtualenv 3.13.1 notify-api +pyenv virtualenv 3.13.3 notify-api pyenv local notify-api ``` diff --git a/poetry.lock b/poetry.lock index 5e57dad5d..b411b0048 100644 --- a/poetry.lock +++ b/poetry.lock @@ -5602,5 +5602,5 @@ cffi = ["cffi (>=1.11)"] [metadata] lock-version = "2.1" -python-versions = "^3.13.1" -content-hash = "2fa300c260bbd401fcb2ff095d054d7731b8425973bf801d28ccc54802b7c79a" +python-versions = "^3.13.3" +content-hash = "cb641bb176af96c26a762ea53880bbf70b6e52cbfdfceea4884542199b67dee3" diff --git a/pyproject.toml b/pyproject.toml index c1f3c8e4e..6e237aa39 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,7 +8,7 @@ readme = "README.md" [tool.poetry.dependencies] -python = "^3.13.1" +python = "^3.13.3" alembic = "==1.16.1" amqp = "==5.3.1" beautifulsoup4 = "==4.13.4"