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

Drop support for python 3.6 #411

Merged
merged 5 commits into from Dec 21, 2022
Merged

Drop support for python 3.6 #411

merged 5 commits into from Dec 21, 2022

Commits on Nov 23, 2022

  1. drop support for python36

    dclayton-godaddy authored and rscottbailey committed Nov 23, 2022
    Configuration menu
    Copy the full SHA
    5fd8c97 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    e2c48ed View commit details
    Browse the repository at this point in the history
  3. Merge with main

    Don't put back in the cruft we just took out
    rscottbailey committed Nov 23, 2022
    Configuration menu
    Copy the full SHA
    5f7b595 View commit details
    Browse the repository at this point in the history
  4. Clean up dependencies

    Where we had complex dependencies that now are unnecessary, simplify
    them. Regenerate poetry.lock to track the result.
    rscottbailey committed Nov 23, 2022
    Configuration menu
    Copy the full SHA
    98e9d7f View commit details
    Browse the repository at this point in the history

Commits on Dec 9, 2022

  1. Address pylint caching alerts

    This commit addresses pylint alarms for instances of unbounded
    `@lru_cache` decorators:
    
    * In one instance, we merely silence the alarm; there is no structural
      way to address the concern. We believe the typical use pattern will be
      creation of a single scanner object that persists for nearly the life
      of execution, and therefore pylint's concerns regarding persistence of
      `self` references in the cache is not well-founded.
    
    * In the other instance, we convert the function to a static method --
      it never referenced `self` anyway.
    rscottbailey committed Dec 9, 2022
    Configuration menu
    Copy the full SHA
    9e785ca View commit details
    Browse the repository at this point in the history