From 68e1656989241fd5463b0402662d54919e54df56 Mon Sep 17 00:00:00 2001 From: mxmlnkn Date: Sat, 12 Nov 2022 21:50:00 +0100 Subject: [PATCH] [doc] Add Python 3.11 to classifiers --- .github/workflows/publish-ratarmountcore.yml | 4 ++-- .github/workflows/python-publish.yml | 4 ++-- .github/workflows/tests.yml | 6 +++--- core/setup.cfg | 4 ++++ setup.cfg | 4 ++++ 5 files changed, 15 insertions(+), 7 deletions(-) diff --git a/.github/workflows/publish-ratarmountcore.yml b/.github/workflows/publish-ratarmountcore.yml index b796da52..8f971df4 100644 --- a/.github/workflows/publish-ratarmountcore.yml +++ b/.github/workflows/publish-ratarmountcore.yml @@ -13,9 +13,9 @@ jobs: steps: - uses: actions/checkout@v3 - name: Set up Python - uses: actions/setup-python@v3 + uses: actions/setup-python@v4 with: - python-version: '3.8' + python-version: '3.11' - name: Install Dependencies run: | python3 -m pip install --upgrade pip diff --git a/.github/workflows/python-publish.yml b/.github/workflows/python-publish.yml index 447ee2de..cd01bb26 100644 --- a/.github/workflows/python-publish.yml +++ b/.github/workflows/python-publish.yml @@ -13,9 +13,9 @@ jobs: steps: - uses: actions/checkout@v3 - name: Set up Python - uses: actions/setup-python@v3 + uses: actions/setup-python@v4 with: - python-version: '3.8' + python-version: '3.11' - name: Install Dependencies run: | python -m pip install --upgrade pip diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 89b7847f..eab7283f 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -14,7 +14,7 @@ jobs: - uses: actions/checkout@v3 - name: Set up Python - uses: actions/setup-python@v3 + uses: actions/setup-python@v4 with: python-version: '3.9' @@ -75,7 +75,7 @@ jobs: # 3.9 was released 2020-10-05 and end-of-life will be 2025-10-25 # 3.10 was released 2021-10-04 and end-of-life will be 2026-10-04 # 3.11 is to be released 2022-10-03 - python-version: ['3.6', '3.10'] + python-version: ['3.6', '3.11'] defaults: run: @@ -86,7 +86,7 @@ jobs: - uses: actions/checkout@v3 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v3 + uses: actions/setup-python@v4 with: python-version: ${{ matrix.python-version }} diff --git a/core/setup.cfg b/core/setup.cfg index 81a6c6c6..43fed56a 100644 --- a/core/setup.cfg +++ b/core/setup.cfg @@ -22,7 +22,11 @@ classifiers = Programming Language :: Python :: 3.8 Programming Language :: Python :: 3.9 Programming Language :: Python :: 3.10 + Programming Language :: Python :: 3.11 Topic :: System :: Archiving + Topic :: System :: Archiving :: Compression + Topic :: System :: Filesystems + Topic :: Utilities long_description = file: README.md, long_description_content_type = text/markdown diff --git a/setup.cfg b/setup.cfg index 324994bd..2ec7ba6d 100644 --- a/setup.cfg +++ b/setup.cfg @@ -20,7 +20,11 @@ classifiers = Programming Language :: Python :: 3.8 Programming Language :: Python :: 3.9 Programming Language :: Python :: 3.10 + Programming Language :: Python :: 3.11 Topic :: System :: Archiving + Topic :: System :: Archiving :: Compression + Topic :: System :: Filesystems + Topic :: Utilities long_description = file: README.md, long_description_content_type = text/markdown