Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update requirements #162

Merged
merged 3 commits into from
Feb 1, 2024
Merged
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: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
- 5432:5432
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9"]
python-version: ["3.9"]
steps:
- uses: actions/checkout@v2
- name: Setup Python
Expand Down
2 changes: 1 addition & 1 deletion linkedevents/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -484,7 +484,7 @@ def dummy_haystack_connection_for_lang(language_code):


import bleach # noqa
BLEACH_ALLOWED_TAGS = bleach.ALLOWED_TAGS + ["p", "div", "br"]
BLEACH_ALLOWED_TAGS = frozenset().union(*[bleach.ALLOWED_TAGS, frozenset(["p", "div", "br"])])

from easy_thumbnails.conf import Settings as thumbnail_settings # noqa
THUMBNAIL_PROCESSORS = (
Expand Down
114 changes: 87 additions & 27 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,36 +1,96 @@
#
# This file is autogenerated by pip-compile
# To update, run:
# This file is autogenerated by pip-compile with Python 3.9
# by the following command:
#
# pip-compile --output-file=requirements-dev.txt requirements-dev.in
#
--no-binary psycopg2

astroid==2.5.0 # via pylint
atomicwrites==1.3.0 # via pytest
attrs==19.3.0 # via pytest
click==7.0 # via pip-tools
django-extensions==2.2.6
entrypoints==0.3 # via flake8
flake8==3.7.9 # via -r requirements-dev.in
freezegun==0.3.15
importlib-metadata==1.6.0 # via pluggy
isort==4.3.21 # via pylint
lazy-object-proxy==1.4.3 # via astroid
mccabe==0.6.1 # via flake8, pylint
more-itertools==8.2.0 # via pytest
pip-tools==4.4.1 # via -r requirements-dev.in
pluggy==0.13.1 # via pytest
py==1.10.0 # via pytest
pycodestyle==2.5.0 # via flake8
pyflakes==2.1.1 # via -r requirements-dev.in, flake8
pylint==2.7.0 # via -r requirements-dev.in
pytest-django==3.8.0 # via -r requirements-dev.in
pytest==5.3.5 # via -r requirements-dev.in, pytest-django
six==1.14.0 # via -c requirements.txt, astroid, pip-tools, pytest
typed-ast==1.4.1 # via astroid
wrapt==1.11.1 # via astroid
zipp==3.1.0 # via importlib-metadata
astroid==3.0.2
# via pylint
build==1.0.3
# via pip-tools
click==8.1.7
# via pip-tools
dill==0.3.8
# via pylint
exceptiongroup==1.2.0
# via
# -c requirements.txt
# pytest
flake8==7.0.0
# via -r requirements-dev.in
freezegun==1.4.0
# via -r requirements-dev.in
importlib-metadata==7.0.1
# via
# -c requirements.txt
# build
iniconfig==2.0.0
# via pytest
isort==5.13.2
# via pylint
mccabe==0.7.0
# via
# flake8
# pylint
packaging==23.2
# via
# -c requirements.txt
# build
# pytest
pip-tools==7.3.0
# via -r requirements-dev.in
platformdirs==4.2.0
# via
# -c requirements.txt
# pylint
pluggy==1.4.0
# via pytest
pycodestyle==2.11.1
# via flake8
pyflakes==3.2.0
# via
# -r requirements-dev.in
# flake8
pylint==3.0.3
# via -r requirements-dev.in
pyproject-hooks==1.0.0
# via build
pytest==8.0.0
# via
# -r requirements-dev.in
# pytest-django
pytest-django==4.8.0
# via -r requirements-dev.in
python-dateutil==2.8.2
# via
# -c requirements.txt
# freezegun
six==1.16.0
# via
# -c requirements.txt
# python-dateutil
tomli==2.0.1
# via
# build
# pip-tools
# pylint
# pyproject-hooks
# pytest
tomlkit==0.12.3
# via pylint
typing-extensions==4.9.0
# via
# -c requirements.txt
# astroid
# pylint
wheel==0.42.0
# via pip-tools
zipp==3.17.0
# via
# -c requirements.txt
# importlib-metadata

# The following packages are considered to be unsafe in a requirements file:
# setuptools
1 change: 1 addition & 0 deletions requirements.in
Original file line number Diff line number Diff line change
Expand Up @@ -49,3 +49,4 @@ requests-cache
requests
sentry-sdk
six
urllib3<2
Loading
Loading