Skip to content

Commit

Permalink
fix: requirements template
Browse files Browse the repository at this point in the history
  • Loading branch information
oleoneto committed Jan 15, 2024
1 parent 4cd8661 commit fc01da3
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 25 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ maintainers = [{ name = "Leo Neto", email = "[email protected]" }]
requires-python = ">=3.8"
license = { file = "LICENSE" }
readme = "README.md"
version = "0.18.0"
version = "0.18.1"
keywords = [
"django",
"automate",
Expand Down
2 changes: 1 addition & 1 deletion src/cli/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"""
import os

__version__ = "0.18.0"
__version__ = "0.18.1"
__license__ = "BSD 3-Clause"
__author__ = "Leo Neto"
__copyright__ = "Copyright 2019-2023 Leo Neto"
Expand Down
46 changes: 23 additions & 23 deletions src/cli/template_files/project/requirements.tpl
Original file line number Diff line number Diff line change
@@ -1,29 +1,29 @@
django~=4
channels~=4
gunicorn~=21
Pillow~=10
psycopg2-binary~=3
python-dotenv~=1
werkzeug~=3.0
django>=4
channels>=4
gunicorn>=21
Pillow>=10
psycopg2-binary
python-dotenv>=1
werkzeug>=3.0

django-debug-toolbar~=4.2
django-environ~=0.11
django-extensions~=3
django-livereload-server~=0.5
django-redis~=5.4.0
qrcode~=7.4.2
django-debug-toolbar>=4.2
django-environ>=0.11
django-extensions>=3
django-livereload-server>=0.5
django-redis>=5.4.0
qrcode>=7.4.2

## Authentication
django-allauth~=0.59
django-allauth>=0.59

## API
django-cors-headers~=4
djangorestframework~=3.14
# djangorestframework-httpsignature~=1.0
# django-guardian~=2
# django-filter~=23
# drf-dynamic-fields~=0.4
# drf-flex-fields~=1.0
django-cors-headers>=4
djangorestframework>=3.14
# djangorestframework-httpsignature>=1.0
# django-guardian>=2
# django-filter>=23
# drf-dynamic-fields>=0.4
# drf-flex-fields>=1.0
# drf-nested-routers==0.91

## Static Files
Expand All @@ -32,8 +32,8 @@ djangorestframework~=3.14
# django-storages

## Tasks
celery~=5
django-celery-beat~=2
celery>=5
django-celery-beat>=2

## Tests
coverage

0 comments on commit fc01da3

Please sign in to comment.