Skip to content

Commit

Permalink
Officially support Python 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
oprypin committed Oct 25, 2023
1 parent 5905e3c commit 8079411
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@ jobs:
fail-fast: false
matrix:
include:
- python: '^3.11'
- python: '^3.12'
os: ubuntu-latest
- python: '3.12'
os: macos-latest
- python: '3.11'
os: windows-latest
Expand All @@ -29,7 +31,7 @@ jobs:
runs-on: ${{matrix.os}}
steps:
- name: Download source
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Install Python
uses: actions/setup-python@v4
with:
Expand All @@ -51,11 +53,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Download source
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Install Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
python-version: '3.12'
- name: Install Hatch
run: |
pip install hatch
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
python-version: '3.12'
- name: Install dependencies
run: pip install -U build
- name: Build package
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Documentation",
"Topic :: Software Development :: Documentation",
"Topic :: Text Processing :: Markup :: Markdown",
Expand Down

0 comments on commit 8079411

Please sign in to comment.