From 6439be0445f0c57992059ce263270e73993cc2c7 Mon Sep 17 00:00:00 2001 From: Jesse Cooper Date: Wed, 22 Mar 2023 08:10:32 -0500 Subject: [PATCH] chore: update supported Python versions, test actions and update pre-commits --- .github/workflows/build.yml | 2 +- .pre-commit-config.yaml | 4 ++-- setup.py | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 51edaf2..9b2783e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -13,7 +13,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: [ 3.6, 3.7, 3.8, 3.9 ] + python-version: [ 3.8, 3.9, 3.10, 3.11 ] os: [ ubuntu-18.04, macOS-latest, windows-latest ] steps: diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 6a4f1a7..ac1c360 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -2,11 +2,11 @@ defualt_stages: [commit, push] fail_fast: true repos: - repo: https://github.com/ambv/black - rev: 21.7b0 + rev: 23.1.0 hooks: - id: black - repo: https://github.com/pre-commit/pre-commit-hooks - rev: v4.0.1 + rev: v4.4.0 hooks: - id: trailing-whitespace - repo: https://gitlab.com/pycqa/flake8 diff --git a/setup.py b/setup.py index 6e52f90..9fc0e91 100644 --- a/setup.py +++ b/setup.py @@ -39,10 +39,10 @@ "License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)", "Natural Language :: English", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.6", - "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", "Topic :: Software Development :: Libraries", ], )