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

Remove some remnants of Python2 #1172

Merged
merged 5 commits into from
Oct 27, 2023
Merged

Commits on Jul 19, 2023

  1. Drop 'six' from dependencies

    As we no longer support Python 2, there is no reason to
    keep this dependency. This commit removes all usages
    of six and removes it from dependencies.
    Lorak-mmk committed Jul 19, 2023
    Configuration menu
    Copy the full SHA
    d9322dc View commit details
    Browse the repository at this point in the history
  2. Remove mentions / workaround for unsupported Python versions

    There are some stale mentions in docs / comments about
    Python versions that are no longer supported. There
    are also some workarounds to make driver work with those
    versions. This commit removes all mentions and workarounds
    that I was able to find.
    Lorak-mmk committed Jul 19, 2023
    Configuration menu
    Copy the full SHA
    fd25de7 View commit details
    Browse the repository at this point in the history

Commits on Aug 3, 2023

  1. compatibility with python 3.7 only

    vgali7 authored and Lorak-mmk committed Aug 3, 2023
    Configuration menu
    Copy the full SHA
    fc372e6 View commit details
    Browse the repository at this point in the history

Commits on Sep 3, 2023

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

Commits on Oct 16, 2023

  1. Fix problems introduced while removing six

    six.iterkeys() returns an iterator, but Python's
    dict.keys() does not, so to pass it to iter() it needs
    to be first passed trough iter().
    Lorak-mmk committed Oct 16, 2023
    Configuration menu
    Copy the full SHA
    6159430 View commit details
    Browse the repository at this point in the history