mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
Locks and upgrades all dependencies
This commit is contained in:
parent
2a104ad33f
commit
aad5e9e99f
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
@ -16,7 +16,7 @@ on:
|
|||||||
env:
|
env:
|
||||||
# This is the version of pipenv all the steps will use
|
# This is the version of pipenv all the steps will use
|
||||||
# If changing this, change Dockerfile
|
# If changing this, change Dockerfile
|
||||||
DEFAULT_PIP_ENV_VERSION: "2023.6.12"
|
DEFAULT_PIP_ENV_VERSION: "2023.7.23"
|
||||||
# This is the default version of Python to use in most steps
|
# This is the default version of Python to use in most steps
|
||||||
# If changing this, change Dockerfile
|
# If changing this, change Dockerfile
|
||||||
DEFAULT_PYTHON_VERSION: "3.9"
|
DEFAULT_PYTHON_VERSION: "3.9"
|
||||||
|
@ -37,7 +37,7 @@ repos:
|
|||||||
exclude: "(^Pipfile\\.lock$)"
|
exclude: "(^Pipfile\\.lock$)"
|
||||||
# Python hooks
|
# Python hooks
|
||||||
- repo: https://github.com/charliermarsh/ruff-pre-commit
|
- repo: https://github.com/charliermarsh/ruff-pre-commit
|
||||||
rev: 'v0.0.278'
|
rev: 'v0.0.280'
|
||||||
hooks:
|
hooks:
|
||||||
- id: ruff
|
- id: ruff
|
||||||
- repo: https://github.com/psf/black
|
- repo: https://github.com/psf/black
|
||||||
|
@ -29,7 +29,7 @@ COPY Pipfile* ./
|
|||||||
|
|
||||||
RUN set -eux \
|
RUN set -eux \
|
||||||
&& echo "Installing pipenv" \
|
&& echo "Installing pipenv" \
|
||||||
&& python3 -m pip install --no-cache-dir --upgrade pipenv==2023.6.12 \
|
&& python3 -m pip install --no-cache-dir --upgrade pipenv==2023.7.23 \
|
||||||
&& echo "Generating requirement.txt" \
|
&& echo "Generating requirement.txt" \
|
||||||
&& pipenv requirements > requirements.txt
|
&& pipenv requirements > requirements.txt
|
||||||
|
|
||||||
|
6
Pipfile
6
Pipfile
@ -26,8 +26,6 @@ gunicorn = "*"
|
|||||||
imap-tools = "*"
|
imap-tools = "*"
|
||||||
langdetect = "*"
|
langdetect = "*"
|
||||||
pathvalidate = "*"
|
pathvalidate = "*"
|
||||||
pillow = "*"
|
|
||||||
pikepdf = "*"
|
|
||||||
python-gnupg = "*"
|
python-gnupg = "*"
|
||||||
python-dotenv = "*"
|
python-dotenv = "*"
|
||||||
python-dateutil = "*"
|
python-dateutil = "*"
|
||||||
@ -64,8 +62,10 @@ zxing-cpp = {version = "*", platform_machine = "== 'x86_64'"}
|
|||||||
scipy = "==1.8.1"
|
scipy = "==1.8.1"
|
||||||
# v4 brings in extra dependencies for features not used here
|
# v4 brings in extra dependencies for features not used here
|
||||||
reportlab = "==3.6.12"
|
reportlab = "==3.6.12"
|
||||||
# Pin this until piwheels is building a newer version (see https://www.piwheels.org/project/cryptography/)
|
# Pin these until piwheels is building a newer version (see https://www.piwheels.org/project/{package}/)
|
||||||
cryptography = "==40.0.1"
|
cryptography = "==40.0.1"
|
||||||
|
pikepdf = "==7.2.0"
|
||||||
|
pillow = "==9.5.0"
|
||||||
|
|
||||||
[dev-packages]
|
[dev-packages]
|
||||||
# Linting
|
# Linting
|
||||||
|
1327
Pipfile.lock
generated
1327
Pipfile.lock
generated
File diff suppressed because it is too large
Load Diff
@ -3,11 +3,6 @@ import os
|
|||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
from unittest import mock
|
from unittest import mock
|
||||||
|
|
||||||
try:
|
|
||||||
import zoneinfo
|
|
||||||
except ImportError:
|
|
||||||
from backports import zoneinfo
|
|
||||||
|
|
||||||
from django.test import TestCase
|
from django.test import TestCase
|
||||||
from django.test import override_settings
|
from django.test import override_settings
|
||||||
from httpx import Request
|
from httpx import Request
|
||||||
@ -51,7 +46,7 @@ class TestTikaParser(HttpxMockMixin, TestCase):
|
|||||||
|
|
||||||
self.assertEqual(
|
self.assertEqual(
|
||||||
self.parser.date,
|
self.parser.date,
|
||||||
datetime.datetime(2020, 11, 21, tzinfo=zoneinfo.ZoneInfo("UTC")),
|
datetime.datetime(2020, 11, 21),
|
||||||
)
|
)
|
||||||
|
|
||||||
def test_metadata(self):
|
def test_metadata(self):
|
||||||
|
Loading…
x
Reference in New Issue
Block a user