Skip to content

Commit

Permalink
🤖 Update dependencies (#219)
Browse files Browse the repository at this point in the history
* 🤖 Update dependencies

* Version bump

* Pin uvicorn < 0.31

---------

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Harpo Harbert <ryan_harbert@wgbh.org>
  • Loading branch information
github-actions[bot] and mrharpo authored Oct 9, 2024
1 parent a50238b commit 26c695e
Show file tree
Hide file tree
Showing 4 changed files with 513 additions and 508 deletions.
2 changes: 1 addition & 1 deletion chowda/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.4.0'
__version__ = '0.5.0'
33 changes: 33 additions & 0 deletions migrations/versions/4899b7f6959a_chowda_maintenance.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
"""chowda maintenance
Revision ID: 4899b7f6959a
Revises: 6a71376e4001
Create Date: 2024-10-09 08:18:06.252355
"""
from alembic import op
import sqlalchemy as sa
import sqlmodel


# revision identifiers, used by Alembic.
revision = '4899b7f6959a'
down_revision = '6a71376e4001'
branch_labels = None
depends_on = None


def upgrade() -> None:
# ### commands auto generated by Alembic - please adjust! ###
op.create_index(op.f('ix_clams_apps_endpoint'), 'clams_apps', ['endpoint'], unique=False)
op.drop_index('ix_users_email', table_name='users')
op.create_index(op.f('ix_users_email'), 'users', ['email'], unique=True)
# ### end Alembic commands ###


def downgrade() -> None:
# ### commands auto generated by Alembic - please adjust! ###
op.drop_index(op.f('ix_users_email'), table_name='users')
op.create_index('ix_users_email', 'users', ['email'], unique=False)
op.drop_index(op.f('ix_clams_apps_endpoint'), table_name='clams_apps')
# ### end Alembic commands ###
Loading

0 comments on commit 26c695e

Please sign in to comment.