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

Replace deprecated cgi module usage with email #340

Merged
merged 2 commits into from
Mar 14, 2023

Commits on Feb 6, 2023

  1. Replace deprecated cgi module usage with email

    In Python 3.11 the standard library `cgi` module was deprecated with a
    planned removal set for Python 3.13. In preparation for that removal,
    this commit removes the usage of this deprecated module and replaces it
    with the still supported standard library `email` module which is what
    the documentation points to as an alternative for how `cgi` was
    previously used. This should still be compatible with all the supported
    Python versions but will be more future proof and not emit any
    deprecation warnings with Python 3.11 anymore.
    mtreinish committed Feb 6, 2023
    Configuration menu
    Copy the full SHA
    b4bcd3c View commit details
    Browse the repository at this point in the history

Commits on Mar 10, 2023

  1. Configuration menu
    Copy the full SHA
    54ea8f2 View commit details
    Browse the repository at this point in the history