diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2a685e1..cdf3912 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,12 +8,6 @@ on: pull_request: jobs: - pre-commit: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - uses: actions/setup-python@v2 - - uses: pre-commit/action@v2.0.2 tests: name: "Python ${{ matrix.python-version }}" runs-on: "ubuntu-latest" diff --git a/README.rst b/README.rst index 23814c2..6fadfe0 100644 --- a/README.rst +++ b/README.rst @@ -3,6 +3,9 @@ :alt: License: AGPL-3 .. image:: https://github.com/acsone/git-aggregator/actions/workflows/ci.yml/badge.svg :target: https://github.com/acsone/git-aggregator/actions/workflows/ci.yml +.. image:: https://results.pre-commit.ci/badge/github/acsone/git-aggregator/master.svg + :target: https://results.pre-commit.ci/latest/github/acsone/git-aggregator/master + :alt: pre-commit.ci status .. image:: https://img.shields.io/pypi/pyversions/git-aggregator ============== @@ -226,6 +229,7 @@ Changes * [BREAKING] drop support for other configuration file formats than yaml * Ensure git pull is always done in fast-forward mode +* Drop support for python 3.6, test with python 3.11 3.0.1 (2022-09-21) ------------------ diff --git a/setup.py b/setup.py index bd120b2..d02c992 100644 --- a/setup.py +++ b/setup.py @@ -20,6 +20,7 @@ '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 :: Utilities", "Topic :: System :: Shells",