Skip to content

Commit

Permalink
Merge pull request #29 from questionlp/develop
Browse files Browse the repository at this point in the history
Upgrade to Flask 3
  • Loading branch information
questionlp authored Oct 29, 2023
2 parents 74a472f + 486b3ab commit 4d5285d
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 11 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Changes

## 2.5.0

### Component Changes

- Upgrade Flask from 2.3.2 to 3.0.0
- Upgrade gunicorn from 20.1.0 to 21.2.0

### Development Changes

- Upgrade pycodestyle from 2.11.0 to 2.11.1
- Upgrade pytest from 7.4.0 to 7.4.3
- Upgrade black from 23.7.0 to 23.10.1

## 2.4.0

### Component Changes
Expand Down
2 changes: 1 addition & 1 deletion app/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
# graphs.wwdt.me is released under the terms of the Apache License 2.0
"""Application Version for Wait Wait Graphs Site"""

APP_VERSION = "2.4.0"
APP_VERSION = "2.5.0"
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[tool.black]
required-version = "23.7.0"
target-version = ["py38", "py39", "py310", "py311"]
required-version = "23.10.1"
target-version = ["py38", "py39", "py310", "py311", "py312"]

[tool.pytest.ini_options]
minversion = "7.0"
minversion = "7.4"
filterwarnings = [
"ignore::DeprecationWarning:mysql.*:",
]
Expand Down
10 changes: 5 additions & 5 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
flake8==6.1.0
pycodestyle==2.11.0
pytest==7.4.0
black==23.7.0
pycodestyle==2.11.1
pytest==7.4.3
black==23.10.1

Flask==2.3.2
gunicorn==20.1.0
Flask==3.0.0
gunicorn==21.2.0

wwdtm==2.4.0
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Flask==2.3.2
gunicorn==20.1.0
Flask==3.0.0
gunicorn==21.2.0

wwdtm==2.4.0

0 comments on commit 4d5285d

Please sign in to comment.