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

Fix/update packages #609

Closed

Commits on Aug 12, 2024

  1. requirements: Updated package versions for Python 3.12 compatibility

    Updated version of frozen-flask to fix Python 3.12 compatibility
    issue and updated other packages as necessary.
    chrisarridge committed Aug 12, 2024
    Configuration menu
    Copy the full SHA
    e4661eb View commit details
    Browse the repository at this point in the history
  2. fix: Updated return value from download errors viewport

    Download errors view returned a tuple containing a Response
    object but newer version of flask requires a tuple containing two
    or more items, or a Response object.  Changed view to just return
    the Response object.
    chrisarridge committed Aug 12, 2024
    Configuration menu
    Copy the full SHA
    4f434da View commit details
    Browse the repository at this point in the history
  3. fix: Fixed datetime deprecation warnings

    Use of datetime.datetime.utcnow() is deprecated and in Python 3.12
    there are now deprecation warnings printed to stdout.  Changed to
    use timezone-aware objects.
    chrisarridge committed Aug 12, 2024
    Configuration menu
    Copy the full SHA
    7c6a110 View commit details
    Browse the repository at this point in the history