Skip to content
Merged
Show file tree
Hide file tree
Changes from 11 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
1 change: 1 addition & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ jobs:
- macos: py311-test
- linux: py312-test
- linux: py313-test
- linux: py314-test
- linux: build_docs

bake_cookies:
Expand Down
6 changes: 3 additions & 3 deletions cookiecutter.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@
"Other"
],
"minimum_python_version": [
"3.9",
"3.10",
"3.11",
"3.12"
"3.12",
"3.13",
"3.14"
],
"use_compiled_extensions": "n",
"enable_dynamic_dev_versions": "n",
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
envlist =
py{310,311,312}-test
py{310,311,312,313,314}-test
bake_cookies
build-docs

Expand Down
10 changes: 5 additions & 5 deletions {{ cookiecutter.package_name }}/.github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
- uses: actions/setup-python@v6
with:
python-version: '{{ default_python }}'
- run: python -m pip install -U --user build
Expand Down Expand Up @@ -99,10 +99,10 @@ jobs:
test_command: 'pytest -p no:warnings --doctest-rst --pyargs {{ cookiecutter.module_name }}'
submodules: false
targets: |
- cp3{10,11,12,13}-manylinux*_x86_64
- cp3{10,11,12,13}-macosx_x86_64
- cp3{10,11,12,13}-macosx_arm64
- cp3{10,11,12,13}-win_amd64
- cp3{11,12,13,14}-manylinux*_x86_64
- cp3{11,12,13,14}-macosx_x86_64
- cp3{11,12,13,14}-macosx_arm64
- cp3{11,12,13,14}-win_amd64
{%- else %}
uses: OpenAstronomy/github-actions-workflows/.github/workflows/publish_pure_python.yml@v2
with:
Expand Down