Skip to content

Commit

Permalink
Remove support for python 3.7.
Browse files Browse the repository at this point in the history
This version has been EOL as of June 27, 2023:
https://devguide.python.org/versions/

Also removed reference in a documentation link.

Signed-off-by: Jason Guiditta <jguiditt@redhat.com>
  • Loading branch information
jguiditta authored and eggmaster committed Jan 22, 2024
1 parent 998daaf commit 6c2486b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python: ['3.7', '3.8', '3.9', '3.10', '3.11']
python: ['3.8', '3.9', '3.10', '3.11']
steps:
- uses: actions/checkout@v3
- name: Setup Python
Expand Down
2 changes: 1 addition & 1 deletion toolchest/logging/drivers/default.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ def getLogger(config):
:param config: Dictionary of values meeting the criteria in the
`Configuration dictionary schema
<https://docs.python.org/3.7/library/logging.config.html#logging-config-dictschema>`_.
<https://docs.python.org/3/library/logging.config.html#logging-config-dictschema>`_.
"""
if 'version' not in config:
Expand Down

0 comments on commit 6c2486b

Please sign in to comment.