Skip to content

Commit

Permalink
[doc] Add Python 3.11 to classifiers
Browse files Browse the repository at this point in the history
  • Loading branch information
mxmlnkn committed Nov 13, 2022
1 parent 98ab9a9 commit 68e1656
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish-ratarmountcore.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'

Expand Down Expand Up @@ -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:
Expand All @@ -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 }}

Expand Down
4 changes: 4 additions & 0 deletions core/setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 4 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 68e1656

Please sign in to comment.