Skip to content

Commit

Permalink
Drop Python 3.7, 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 8212f72 commit 4a01ae6
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 11 deletions.
20 changes: 11 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,23 +13,25 @@ jobs:
fail-fast: false
matrix:
include:
- python: '^3.10'
- python: '^3.12'
os: ubuntu-latest
- python: '3.12'
os: macos-latest
- python: '3.10'
- python: '3.11'
os: windows-latest
- python: 3.9
- python: '3.10'
os: ubuntu-latest
- python: 3.8
- python: '3.9'
os: macos-latest
- python: 3.7
- python: '3.8'
os: windows-latest
- python: 3.7
- python: '3.8'
os: ubuntu-latest
versions: minimal
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
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"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",
"Programming Language :: Python :: 3.12",
"Topic :: Documentation",
"Topic :: Software Development :: Documentation",
"Topic :: Text Processing :: Markup :: Markdown",
Expand Down

0 comments on commit 4a01ae6

Please sign in to comment.