try upgrading to python 3.13.1

This commit is contained in:
Kenneth Kehl
2025-05-30 11:09:10 -07:00
parent ac9e3a49d8
commit ad17ddc23f
4 changed files with 9 additions and 9 deletions

View File

@@ -9,10 +9,10 @@ runs:
sudo apt-get update \ sudo apt-get update \
&& sudo apt-get install -y --no-install-recommends \ && sudo apt-get install -y --no-install-recommends \
libcurl4-openssl-dev libcurl4-openssl-dev
- name: Set up Python 3.13.2 - name: Set up Python 3.13.1
uses: actions/setup-python@v4 uses: actions/setup-python@v4
with: with:
python-version: "3.13.2" python-version: "3.13.1"
- name: Install poetry - name: Install poetry
shell: bash shell: bash
run: pip install poetry==2.1.3 run: pip install poetry==2.1.3

View File

@@ -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 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 virtual environment, and set the local Python version to point to the virtual
environment (assumes version Python `3.13.2` is what is installed on your environment (assumes version Python `3.13.1` is what is installed on your
machine): machine):
```sh ```sh
cd notifications-api cd notifications-api
pyenv virtualenv 3.13.2 notify-api pyenv virtualenv 3.13.1 notify-api
pyenv local notify-api pyenv local notify-api
``` ```
@@ -329,7 +329,7 @@ environment with the newer version of Python you just installed:
```sh ```sh
cd notifications-api cd notifications-api
pyenv virtualenv 3.13.2 notify-api pyenv virtualenv 3.13.1 notify-api
pyenv local notify-api pyenv local notify-api
``` ```

4
poetry.lock generated
View File

@@ -5602,5 +5602,5 @@ cffi = ["cffi (>=1.11)"]
[metadata] [metadata]
lock-version = "2.1" lock-version = "2.1"
python-versions = "^3.13.2" python-versions = "^3.13.1"
content-hash = "65a3de0093f1298bb14da244f8d9b20e37ac92601a6bc446dc2927c98e9fd992" content-hash = "2fa300c260bbd401fcb2ff095d054d7731b8425973bf801d28ccc54802b7c79a"

View File

@@ -8,7 +8,7 @@ readme = "README.md"
[tool.poetry.dependencies] [tool.poetry.dependencies]
python = "^3.13.2" python = "^3.13.1"
alembic = "==1.16.1" alembic = "==1.16.1"
amqp = "==5.3.1" amqp = "==5.3.1"
beautifulsoup4 = "==4.13.4" beautifulsoup4 = "==4.13.4"
@@ -25,7 +25,7 @@ click-didyoumean = "==0.3.1"
click-plugins = "==1.1.1" click-plugins = "==1.1.1"
click-repl = "==0.3.0" click-repl = "==0.3.0"
deprecated = "==1.2.14" deprecated = "==1.2.14"
eventlet = "==0.33.3" eventlet = "==0.36.1"
expiringdict = "==1.2.2" expiringdict = "==1.2.2"
flask = "~=3.1" flask = "~=3.1"
flask-bcrypt = "==1.0.1" flask-bcrypt = "==1.0.1"