mirror of
https://github.com/ajurna/cbwebreader.git
synced 2026-02-02 06:15:57 +00:00
updating deps
This commit is contained in:
@@ -2,22 +2,13 @@
|
||||
# See https://pre-commit.com/hooks.html for more hooks
|
||||
repos:
|
||||
- repo: https://github.com/pre-commit/pre-commit-hooks
|
||||
rev: v4.3.0
|
||||
rev: v4.5.0
|
||||
hooks:
|
||||
- id: trailing-whitespace
|
||||
- id: end-of-file-fixer
|
||||
- id: check-yaml
|
||||
- id: check-added-large-files
|
||||
- repo: https://github.com/python-poetry/poetry
|
||||
rev: '1.6.1' # add version here
|
||||
rev: '1.8.2' # add version here
|
||||
hooks:
|
||||
- id: poetry-check
|
||||
- id: poetry-export
|
||||
args: ["--without-hashes", "-o", "requirements.txt"]
|
||||
- repo: https://github.com/pycqa/flake8
|
||||
rev: "5.0.4"
|
||||
hooks:
|
||||
- id: flake8
|
||||
additional_dependencies: [
|
||||
'flake8-annotations==2.9.1',
|
||||
]
|
||||
|
||||
@@ -7,7 +7,6 @@ import uuid
|
||||
|
||||
import django.db.models.deletion
|
||||
from django.db import migrations, models
|
||||
from django.utils.timezone import utc
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
@@ -33,7 +32,7 @@ class Migration(migrations.Migration):
|
||||
model_name="comicbook",
|
||||
name="date_added",
|
||||
field=models.DateTimeField(
|
||||
auto_now_add=True, default=datetime.datetime(2016, 3, 31, 10, 40, 30, 62170, tzinfo=utc)
|
||||
auto_now_add=True, default=datetime.datetime(2016, 3, 31, 10, 40, 30, 62170, tzinfo=datetime.timezone.utc)
|
||||
),
|
||||
preserve_default=False,
|
||||
),
|
||||
|
||||
1257
poetry.lock
generated
1257
poetry.lock
generated
File diff suppressed because it is too large
Load Diff
@@ -3,53 +3,53 @@ line_length = 119
|
||||
|
||||
[tool.poetry]
|
||||
name = "cbwebreader"
|
||||
version = "1.1.8"
|
||||
version = "1.1.9"
|
||||
description = "CBR/Z Web Reader"
|
||||
authors = ["ajurna <ajurna@gmail.com>"]
|
||||
license = "Creative Commons Attribution-ShareAlike 4.0 International License"
|
||||
package-mode = false
|
||||
|
||||
[tool.poetry.dependencies]
|
||||
python = "^3.12"
|
||||
Django = "^4.1"
|
||||
gunicorn = "^21.2.0"
|
||||
Django = "5.0.4"
|
||||
gunicorn = "^22.0.0"
|
||||
dj-database-url = "^2.1.0"
|
||||
python-dotenv = "^1.0.0"
|
||||
loguru = "^0.7.0"
|
||||
django-silk = "^5.0.0"
|
||||
mysqlclient = "^2.0.1"
|
||||
psycopg2-binary = "^2.9.6"
|
||||
rarfile = "^4.0"
|
||||
django-extensions = "^3.2.1"
|
||||
Pillow = "^10.0.1"
|
||||
django-imagekit = "^5.0.0"
|
||||
PyMuPDF = "~1.20.2"
|
||||
django-bootstrap4 = "^23.1"
|
||||
django-csp = "^3.7"
|
||||
django-boost = "^2.1"
|
||||
django-sri = "^0.7.0"
|
||||
django-permissions-policy = "^4.15.0"
|
||||
djangorestframework = "^3.13.1"
|
||||
django-filter = "^23.1"
|
||||
django-cors-headers = "^4.2.0"
|
||||
djangorestframework-simplejwt = "^5.2.0"
|
||||
django-webpack-loader = "^2.0.1"
|
||||
drf-yasg = "^1.20.0"
|
||||
drf-extensions = "^0.7.1"
|
||||
python-dotenv = "^1.0.1"
|
||||
loguru = "^0.7.2"
|
||||
django-silk = "^5.1.0"
|
||||
mysqlclient = "^2.2.4"
|
||||
psycopg2-binary = "^2.9.9"
|
||||
rarfile = "4.2"
|
||||
django-extensions = "3.2.3"
|
||||
Pillow = "10.3.0"
|
||||
django-imagekit = "5.0.0"
|
||||
PyMuPDF = "1.24.2"
|
||||
django-bootstrap4 = "24.3"
|
||||
django-csp = "3.8"
|
||||
django-boost = "2.1"
|
||||
django-sri = "0.7.0"
|
||||
django-permissions-policy = "4.19.0"
|
||||
djangorestframework = "3.15.1"
|
||||
django-filter = "24.2"
|
||||
django-cors-headers = "4.3.1"
|
||||
djangorestframework-simplejwt = "5.3.1"
|
||||
django-webpack-loader = "3.1.0"
|
||||
drf-yasg = "1.21.7"
|
||||
drf-extensions = "0.7.1"
|
||||
|
||||
[tool.poetry.dev-dependencies]
|
||||
mypy = "^1.2.0"
|
||||
Werkzeug = "^2.2"
|
||||
pyOpenSSL = "^22.0.0"
|
||||
ipython = "^8.12.0"
|
||||
coverage = "^7.2.3"
|
||||
pre-commit = "^3.2.2"
|
||||
flake8 = "^6.0.0"
|
||||
flake8-annotations = "^3.0.0"
|
||||
mypy = "1.10.0"
|
||||
Werkzeug = "3.0.2"
|
||||
pyOpenSSL = "24.1.0"
|
||||
ipython = "8.24.0"
|
||||
coverage = "7.5.0"
|
||||
pre-commit = "3.7.0"
|
||||
flake8 = "7.0.0"
|
||||
flake8-annotations = "3.0.1"
|
||||
|
||||
[tool.poetry.group.dev.dependencies]
|
||||
pylint = "^2.15.0"
|
||||
pylint-django = "^2.5.3"
|
||||
mypy = "^1.2.0"
|
||||
pylint = "3.1.0"
|
||||
pylint-django = "2.5.5"
|
||||
|
||||
[build-system]
|
||||
requires = ["poetry-core>=1.0.0"]
|
||||
|
||||
@@ -1,45 +1,46 @@
|
||||
asgiref==3.7.2 ; python_version >= "3.12" and python_version < "4.0"
|
||||
autopep8==2.0.4 ; python_version >= "3.12" and python_version < "4.0"
|
||||
beautifulsoup4==4.12.2 ; python_version >= "3.12" and python_version < "4.0"
|
||||
asgiref==3.8.1 ; python_version >= "3.12" and python_version < "4.0"
|
||||
autopep8==2.1.0 ; python_version >= "3.12" and python_version < "4.0"
|
||||
beautifulsoup4==4.12.3 ; python_version >= "3.12" and python_version < "4.0"
|
||||
colorama==0.4.6 ; python_version >= "3.12" and python_version < "4.0" and sys_platform == "win32"
|
||||
dj-database-url==2.1.0 ; python_version >= "3.12" and python_version < "4.0"
|
||||
django-appconf==1.0.5 ; python_version >= "3.12" and python_version < "4.0"
|
||||
django-appconf==1.0.6 ; python_version >= "3.12" and python_version < "4.0"
|
||||
django-boost==2.1 ; python_version >= "3.12" and python_version < "4.0"
|
||||
django-bootstrap4==23.2 ; python_version >= "3.12" and python_version < "4.0"
|
||||
django-cors-headers==4.2.0 ; python_version >= "3.12" and python_version < "4.0"
|
||||
django-csp==3.7 ; python_version >= "3.12" and python_version < "4.0"
|
||||
django-bootstrap4==24.3 ; python_version >= "3.12" and python_version < "4.0"
|
||||
django-cors-headers==4.3.1 ; python_version >= "3.12" and python_version < "4.0"
|
||||
django-csp==3.8 ; python_version >= "3.12" and python_version < "4.0"
|
||||
django-extensions==3.2.3 ; python_version >= "3.12" and python_version < "4.0"
|
||||
django-filter==23.3 ; python_version >= "3.12" and python_version < "4.0"
|
||||
django-filter==24.2 ; python_version >= "3.12" and python_version < "4.0"
|
||||
django-imagekit==5.0.0 ; python_version >= "3.12" and python_version < "4.0"
|
||||
django-permissions-policy==4.17.0 ; python_version >= "3.12" and python_version < "4.0"
|
||||
django-silk==5.0.4 ; python_version >= "3.12" and python_version < "4.0"
|
||||
django-permissions-policy==4.19.0 ; python_version >= "3.12" and python_version < "4.0"
|
||||
django-silk==5.1.0 ; python_version >= "3.12" and python_version < "4.0"
|
||||
django-sri==0.7.0 ; python_version >= "3.12" and python_version < "4.0"
|
||||
django-webpack-loader==2.0.1 ; python_version >= "3.12" and python_version < "4.0"
|
||||
django==4.2.5 ; python_version >= "3.12" and python_version < "4.0"
|
||||
djangorestframework-simplejwt==5.3.0 ; python_version >= "3.12" and python_version < "4.0"
|
||||
djangorestframework==3.14.0 ; python_version >= "3.12" and python_version < "4.0"
|
||||
django-webpack-loader==3.1.0 ; python_version >= "3.12" and python_version < "4.0"
|
||||
django==5.0.4 ; python_version >= "3.12" and python_version < "4.0"
|
||||
djangorestframework-simplejwt==5.3.1 ; python_version >= "3.12" and python_version < "4.0"
|
||||
djangorestframework==3.15.1 ; python_version >= "3.12" and python_version < "4.0"
|
||||
drf-extensions==0.7.1 ; python_version >= "3.12" and python_version < "4.0"
|
||||
drf-yasg==1.21.7 ; python_version >= "3.12" and python_version < "4.0"
|
||||
gprof2dot==2022.7.29 ; python_version >= "3.12" and python_version < "4.0"
|
||||
gunicorn==21.2.0 ; python_version >= "3.12" and python_version < "4.0"
|
||||
gunicorn==22.0.0 ; python_version >= "3.12" and python_version < "4.0"
|
||||
inflection==0.5.1 ; python_version >= "3.12" and python_version < "4.0"
|
||||
loguru==0.7.2 ; python_version >= "3.12" and python_version < "4.0"
|
||||
mysqlclient==2.2.0 ; python_version >= "3.12" and python_version < "4.0"
|
||||
packaging==23.2 ; python_version >= "3.12" and python_version < "4.0"
|
||||
mysqlclient==2.2.4 ; python_version >= "3.12" and python_version < "4.0"
|
||||
packaging==24.0 ; python_version >= "3.12" and python_version < "4.0"
|
||||
pilkit==3.0 ; python_version >= "3.12" and python_version < "4.0"
|
||||
pillow==10.0.1 ; python_version >= "3.12" and python_version < "4.0"
|
||||
pillow==10.3.0 ; python_version >= "3.12" and python_version < "4.0"
|
||||
psycopg2-binary==2.9.9 ; python_version >= "3.12" and python_version < "4.0"
|
||||
pycodestyle==2.11.0 ; python_version >= "3.12" and python_version < "4.0"
|
||||
pycodestyle==2.11.1 ; python_version >= "3.12" and python_version < "4.0"
|
||||
pyjwt==2.8.0 ; python_version >= "3.12" and python_version < "4.0"
|
||||
pymupdf==1.20.2 ; python_version >= "3.12" and python_version < "4.0"
|
||||
python-dotenv==1.0.0 ; python_version >= "3.12" and python_version < "4.0"
|
||||
pytz==2023.3.post1 ; python_version >= "3.12" and python_version < "4.0"
|
||||
pymupdf==1.24.2 ; python_version >= "3.12" and python_version < "4.0"
|
||||
pymupdfb==1.24.1 ; python_version >= "3.12" and python_version < "4.0"
|
||||
python-dotenv==1.0.1 ; python_version >= "3.12" and python_version < "4.0"
|
||||
pytz==2024.1 ; python_version >= "3.12" and python_version < "4.0"
|
||||
pyyaml==6.0.1 ; python_version >= "3.12" and python_version < "4.0"
|
||||
rarfile==4.1 ; python_version >= "3.12" and python_version < "4.0"
|
||||
rarfile==4.2 ; python_version >= "3.12" and python_version < "4.0"
|
||||
soupsieve==2.5 ; python_version >= "3.12" and python_version < "4.0"
|
||||
sqlparse==0.4.4 ; python_version >= "3.12" and python_version < "4.0"
|
||||
typing-extensions==4.8.0 ; python_version >= "3.12" and python_version < "4.0"
|
||||
tzdata==2023.3 ; python_version >= "3.12" and python_version < "4.0" and sys_platform == "win32"
|
||||
sqlparse==0.5.0 ; python_version >= "3.12" and python_version < "4.0"
|
||||
typing-extensions==4.11.0 ; python_version >= "3.12" and python_version < "4.0"
|
||||
tzdata==2024.1 ; python_version >= "3.12" and python_version < "4.0" and sys_platform == "win32"
|
||||
ua-parser==0.18.0 ; python_version >= "3.12" and python_version < "4.0"
|
||||
uritemplate==4.1.1 ; python_version >= "3.12" and python_version < "4.0"
|
||||
user-agents==2.2.0 ; python_version >= "3.12" and python_version < "4.0"
|
||||
|
||||
Reference in New Issue
Block a user