Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump the pip-dependencies group with 1 update #105

Merged
merged 6 commits into from
Jan 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 2 additions & 8 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,19 +1,13 @@
# It is useful because connexion 2.14.2 requires Flask <2.3,
# which in turn is missing this dependency. Can be removed after Flask 2.3
blinker==1.7.0 # Added manually, to be removed later.
bs4==0.0.2
beautifulsoup4==4.12.3
chardet==5.2.0
connexion==2.14.2
Flask==2.3.3
Flask-Admin==1.6.1
Flask-APScheduler==1.13.1
Flask-BasicAuth==0.2.0
Flask-Login==0.6.3
Flask-Markdown==0.3
Flask-Migrate==4.0.5
flask-msearch==0.2.9.4
# Flask-SQLAlchemy <= 3.0.5 is required for flask-msearch
# because in Flask-SQLAlchemy > 3.0.5 the deprecated code that flask-msearch uses was removed.
Flask-SQLAlchemy==3.0.5
Flask-SimpleMDE==0.3.0
Flask-WTF==1.2.1
Frozen-Flask==1.0.1
Expand Down
4 changes: 3 additions & 1 deletion src/se_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,9 @@

metadata = MetaData(naming_convention=convention)
db = SQLAlchemy(metadata=metadata)
search = Search()
# Workaround: flask-msearch does not work with recent Flask-SQLAlchemy.
# Pass 'db' parameter explicitly to mitigate this problem.
search = Search(db=db)


tag = db.Table(
Expand Down
Loading