Skip to content

Commit

Permalink
Fix for Flask @ v3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
guydavis committed Nov 19, 2023
1 parent 70f5b8f commit a9f1a33
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ All notable changes to this project will be documented in this file. The format
### Updated
- [Chia](https://github.com/Chia-Network/chia-blockchain/releases/tag/2.1.1) to v2.1.1 - misc improvements, see their release notes.
- [Gigahorse](https://github.com/madMAx43v3r/chia-gigahorse/releases/tag/v2.1.1.giga24) to v2.1.1.giga24 with C20 compression support.
- [Flask](https://flask.palletsprojects.com/en/3.0.x/changes/#version-3-0-0) to v3.0.0 - serves up the Machinaris WebUI.

## [2.1.0] - 2023-10-06
### Updated
Expand Down
2 changes: 1 addition & 1 deletion docker/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apscheduler
click
jinja2
flask == 2.3.3
flask
flask-smorest >= 0.42.1
python-dotenv
marshmallow
Expand Down
3 changes: 2 additions & 1 deletion web/routes.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,10 @@
import traceback

from datetime import datetime
from flask import Flask, flash, redirect, render_template, abort, escape, \
from flask import Flask, flash, redirect, render_template, abort, \
request, session, url_for, send_from_directory, make_response
from flask_babel import _, lazy_gettext as _l
from markupsafe import escape

from common.config import globals
from common.utils import fiat
Expand Down

0 comments on commit a9f1a33

Please sign in to comment.