Skip to content

Commit 5268ef8

Browse files
committed
update python version
1 parent 3cfbf03 commit 5268ef8

4 files changed

Lines changed: 13 additions & 13 deletions

File tree

.devcontainer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM mcr.microsoft.com/devcontainers/python:0-3.10
1+
FROM mcr.microsoft.com/devcontainers/python:0-3.13
22

33
ENV PYTHONUNBUFFERED 1
44

Pipfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ wtforms = "==3.1.2"
2222
sqlalchemy = "*"
2323

2424
[requires]
25-
python_version = "3.10"
25+
python_version = "3.13"
2626

2727
[scripts]
2828
start="flask run -p 3001 -h 0.0.0.0"

Pipfile.lock

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
"""empty message
22
3-
Revision ID: e16d9997f0f7
3+
Revision ID: 0763d677d453
44
Revises:
5-
Create Date: 2025-02-11 19:12:43.374246
5+
Create Date: 2025-02-25 14:47:16.337069
66
77
"""
88
from alembic import op
99
import sqlalchemy as sa
1010

1111

1212
# revision identifiers, used by Alembic.
13-
revision = 'e16d9997f0f7'
13+
revision = '0763d677d453'
1414
down_revision = None
1515
branch_labels = None
1616
depends_on = None
@@ -21,7 +21,7 @@ def upgrade():
2121
op.create_table('user',
2222
sa.Column('id', sa.Integer(), nullable=False),
2323
sa.Column('email', sa.String(length=120), nullable=False),
24-
sa.Column('password', sa.String(length=80), nullable=False),
24+
sa.Column('password', sa.String(), nullable=False),
2525
sa.Column('is_active', sa.Boolean(), nullable=False),
2626
sa.PrimaryKeyConstraint('id'),
2727
sa.UniqueConstraint('email')

0 commit comments

Comments
 (0)