Skip to content
Open
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
2 changes: 0 additions & 2 deletions .devcontainer/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
---
# Python 3 with Redis
version: "3"

services:
app:
build:
Expand Down
18 changes: 10 additions & 8 deletions Pipfile
Original file line number Diff line number Diff line change
@@ -1,29 +1,31 @@
# Python package dependencies
# cspell: disable
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"

[packages]
flask = "==3.1.2"
# redis = "==5.2.1"
flask = "==3.1.3"
redis = "==7.2.0"
flask-redis = "==0.4.0"
retry2 = "==0.9.5"
python-dotenv = "~=1.2.1"
python-dotenv = "~=1.2.2"
gunicorn = "~=25.0.0"


[dev-packages]
# Code Quality
pylint = "~=4.0.4"
pylint = "~=4.0.5"
flake8 = "~=7.3.0"
black = "~=26.1.0"
black = "~=26.5.1"

# Test-Driven Development
pytest = "~=9.0.2"
pytest = "~=9.0.3"
pytest-pspec = "~=0.0.4"
pytest-cov = "~=7.0.0"
pytest-cov = "~=7.1.0"
factory-boy = "~=3.3.3"
coverage = "~=7.13.2"
coverage = "~=7.14.1"

# Utility
honcho = "~=2.0.0"
Expand Down
Loading