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

Bump the minor-patch group with 9 updates #3395

Merged
merged 2 commits into from
Mar 18, 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
12 changes: 6 additions & 6 deletions constraints.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ beautifulsoup4==4.12.3
# via webtest
bravado-core==6.1.1
# via -r constraints.in
build==1.0.3
build==1.1.1
# via -r constraints.in
certifi==2023.11.17
# via
Expand All @@ -40,7 +40,7 @@ coverage==7.4.0
# via
# coverage
# pytest-cov
dockerflow==2024.1.0
dockerflow==2024.3.0
# via -r constraints.in
exceptiongroup==1.2.0
# via pytest
Expand Down Expand Up @@ -85,7 +85,7 @@ markupsafe==2.1.4
# via werkzeug
msgpack==1.0.7
# via bravado-core
newrelic==9.6.0
newrelic==9.7.0
# via -r constraints.in
packaging==23.2
# via
Expand All @@ -100,7 +100,7 @@ plaster==1.1.2
# pyramid
plaster-pastedeploy==1.0.1
# via pyramid
playwright==1.41.2
playwright==1.42.0
# via -r constraints.in
pluggy==1.3.0
# via pytest
Expand Down Expand Up @@ -132,7 +132,7 @@ pytest-cache==1.0
# via -r constraints.in
pytest-cov==4.1.0
# via -r constraints.in
python-dateutil==2.8.2
python-dateutil==2.9.0.post0
# via
# -r constraints.in
# arrow
Expand Down Expand Up @@ -165,7 +165,7 @@ rpds-py==0.17.1
# via
# jsonschema
# referencing
ruff==0.2.2
ruff==0.3.2
# via -r constraints.in
sentry-sdk==1.39.2
# via -r constraints.in
Expand Down
6 changes: 3 additions & 3 deletions docs/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ Sphinx==7.2.6
sphinx_rtd_theme==2.0.0
docutils==0.20.1
sphinxcontrib-httpdomain==1.8.1
sphinx-github-changelog==1.2.1
sphinx-github-changelog==1.3.0
kinto
mock==5.1.0
webtest==3.0.0
cornice==6.1.0
pyramid==2.0.2
python-rapidjson==1.14
SQLAlchemy==2.0.27
python-rapidjson==1.16
SQLAlchemy==2.0.28
4 changes: 2 additions & 2 deletions kinto/core/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""Main entry point
"""
"""Main entry point"""

import logging
import tempfile

Expand Down
1 change: 1 addition & 0 deletions kinto/core/scripts.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
kinto.core.scripts: utilities to build admin scripts for kinto-based services
"""

import logging

from pyramid.settings import asbool
Expand Down
3 changes: 1 addition & 2 deletions kinto/core/storage/exceptions.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
"""Exceptions raised by storage backend.
"""
"""Exceptions raised by storage backend."""


class BackendError(Exception):
Expand Down
1 change: 1 addition & 0 deletions kinto/core/storage/utils.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
kinto.core.storage.utils: methods for making it easier to work with kinto storage objects
"""

from kinto.core.storage import Filter
from kinto.core.utils import COMPARISON

Expand Down
1 change: 1 addition & 0 deletions kinto/plugins/quotas/scripts.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
kinto.plugins.quotas.scripts: scripts to maintain quotas and fix them when they're broken
"""

import logging

from kinto.core.storage import Sort
Expand Down
Loading