Skip to content

Commit

Permalink
Merge pull request #24 from astrojuanlu/drop-python-3.7
Browse files Browse the repository at this point in the history
Drop python 3.7
  • Loading branch information
astrojuanlu authored Jul 24, 2024
2 parents eb1ea52 + 74b34ab commit bec6b29
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion mypy.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[mypy]
python_version = 3.7
python_version = 3.8
warn_redundant_casts = True
warn_unused_configs = True
pretty = True
Expand Down
2 changes: 1 addition & 1 deletion template/.github/workflows/publish.yml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.7'
python-version: '3.8'
- name: Install build dependencies
run: python -m pip install build
- name: Build package
Expand Down
2 changes: 1 addition & 1 deletion template/.github/workflows/test.yml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v2
- name: Set up Python {{ '${{ matrix.python-version }}' }}
Expand Down
1 change: 1 addition & 0 deletions template/pyproject.toml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dynamic = ["version"]

Expand Down

0 comments on commit bec6b29

Please sign in to comment.