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

ci: merge main to release #8332

Merged
merged 9 commits into from
Dec 12, 2024
Prev Previous commit
Next Next commit
chore: update import for python-json-logger (#8330)
The "jsonlogger" module became "json" in 3.1.0
  • Loading branch information
jennifer-richards authored Dec 12, 2024
commit 9b372a31b4c70a031bb20a1cb2ee8189551d01ce
4 changes: 2 additions & 2 deletions ietf/utils/jsonlogger.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# Copyright The IETF Trust 2024, All Rights Reserved
from pythonjsonlogger import jsonlogger
from pythonjsonlogger.json import JsonFormatter
import time


class DatatrackerJsonFormatter(jsonlogger.JsonFormatter):
class DatatrackerJsonFormatter(JsonFormatter):
converter = time.gmtime # use UTC
default_msec_format = "%s.%03d" # '.' instead of ','

Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ pyopenssl>=22.0.0 # Used by urllib3.contrib, which is used by PyQuery but not
pyquery>=1.4.3
python-dateutil>=2.8.2
types-python-dateutil>=2.8.2
python-json-logger>=2.0.7
python-json-logger>=3.1.0
python-magic==0.4.18 # Versions beyond the yanked .19 and .20 introduce form failures
pymemcache>=4.0.0 # for django.core.cache.backends.memcached.PyMemcacheCache
python-mimeparse>=1.6 # from TastyPie
Expand Down
Loading