Skip to content

Commit

Permalink
Merge pull request #20 from questionlp/develop
Browse files Browse the repository at this point in the history
Bump dependency versions
  • Loading branch information
questionlp authored May 2, 2023
2 parents ed168fc + 520a612 commit 22ca504
Show file tree
Hide file tree
Showing 7 changed files with 43 additions and 16 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ app/static/robots.txt
# Ignore New Relic Agent config file
newrelic.ini

# Deprecated files
pytest.ini.old

# Ignore macOS DS_Store files
.DS_Store

Expand Down
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# Changes

## 2.2.5

### Component Changes

- Upgrade Flask from 2.2.3 to 2.3.2
- Upgrade wwdtm from 2.0.8 to 2.1.0, which also includes the following changes:
- Upgrade MySQL Connector/Python from 8.0.31 to 8.0.33
- Upgrade NumPy from 1.23.4 to 1.24.2
- Upgrade python-slugify from 6.1.2 to 8.0.1
- Upgrade pytz from 2022.6 to 2023.3

### Development Changes

- Move pytest configuration from `pytest.ini` into `pyproject.toml`
- Upgrade flake8 from 5.0.4 to 6.0.0
- Upgrade pycodestyle from 2.9.1 to 2.10.0
- Upgrade pytest from 7.2.0 to 7.3.1
- Upgrade black from 22.10.0 to 23.3.0

## 2.2.4

### 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.2.4"
APP_VERSION = "2.2.5"
13 changes: 12 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
[tool.black]
required-version = "22.10.0"
required-version = "23.3.0"
target-version = ["py38", "py39", "py310", "py311"]

[tool.pytest.ini_options]
minversion = "7.0"
filterwarnings = [
"ignore::DeprecationWarning:mysql.*:",
]
norecursedirs = [
".git",
"venv",
"static",
]
4 changes: 0 additions & 4 deletions pytest.ini

This file was deleted.

13 changes: 6 additions & 7 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
flake8==5.0.4
pycodestyle==2.9.1
pytest==7.2.0
black==22.10.0
flake8==6.0.0
pycodestyle==2.10.0
pytest==7.3.1
black==23.3.0

Flask==2.2.3
Werkzeug==2.2.3
Flask==2.3.2
gunicorn==20.1.0

wwdtm==2.0.8
wwdtm==2.1.0
5 changes: 2 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
Flask==2.2.3
Werkzeug==2.2.3
Flask==2.3.2
gunicorn==20.1.0

wwdtm==2.0.8
wwdtm==2.1.0

0 comments on commit 22ca504

Please sign in to comment.