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

chore: Update all dependencies with pip-compile #1156

Merged
merged 2 commits into from
Mar 17, 2023

Commits on Mar 16, 2023

  1. chore: Update all dependencies with pip-compile

    Because Dependabot isn't quite working properly: see #964.
    StevenMaude committed Mar 16, 2023
    Configuration menu
    Copy the full SHA
    12c4f5b View commit details
    Browse the repository at this point in the history
  2. Remove deprecated use of structlog's wrap_dict

    We aren't calling a logger's `new()`, `bind()` or `unbind()` methods,
    so assuming this is unused.
    
    It was originally copied over from cohort-extractor, for which the code
    was initially added a while ago.
    
    The current way of doing things if this is needed is to use
    `contextvars`:
    
    ```python
    structlog.contextvars.bind_contextvars()
    structlog.contextvars.unbind_contextvars()
    ```
    
    https://www.structlog.org/en/22.3.0/thread-local.html
    https://www.structlog.org/en/22.3.0/contextvars.html
    StevenMaude committed Mar 16, 2023
    Configuration menu
    Copy the full SHA
    139e98c View commit details
    Browse the repository at this point in the history