Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions template/pyproject.toml.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ keywords = [
license = {file = "LICENSE"}
name = "{{ package_name }}"
readme = {file = "README.md", content-type = "text/markdown"}
requires-python = ">=3.8"
requires-python = ">=3.10"
version = "{{ version }}"

[project.optional-dependencies]
Expand Down Expand Up @@ -97,7 +97,7 @@ command_line = "-m pytest"
[tool.tox]
legacy_tox_ini = """
[tox]
envlist = py38,py39,py310,py311,py312
envlist = py310,py311,py312
skip_missing_interpreters = true
{% if AddLocalTests -%}
[testenv]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,10 @@ jobs:
fail-fast: false
steps:
- uses: actions/checkout@v5
- name: Set up Python 3.9
- name: Set up Python 3.12
uses: actions/setup-python@v6
with:
python-version: 3.9
python-version: 3.12
- name: Python info
shell: bash -e {0}
run: |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ jobs:
fail-fast: false
steps:
- uses: actions/checkout@v5
- name: Set up Python 3.9
- name: Set up Python 3.12
uses: actions/setup-python@v6
with:
python-version: 3.9
python-version: 3.12
- name: Python info
shell: bash -e {0}
run: |
Expand All @@ -30,7 +30,7 @@ jobs:
python -m pip install --upgrade pip setuptools
python -m pip install .[dev,publishing]
- name: Install pandoc using apt
run: sudo apt install pandoc
run: sudo apt install pandoc
- name: Build documentation
run: make coverage doctest html
working-directory: docs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: 3.9
python-version: 3.12
- name: Python info
shell: bash -e {0}
run: |
Expand Down
Loading