Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 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
5 changes: 3 additions & 2 deletions cookiecutter.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,11 @@
"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
8 changes: 4 additions & 4 deletions {{ cookiecutter.package_name }}/.github/workflows/ci.yml
Original file line number Diff line number Diff line change
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{10,11,12,13,14}-manylinux*_x86_64
- cp3{10,11,12,13,14}-macosx_x86_64
- cp3{10,11,12,13,14}-macosx_arm64
- cp3{10,11,12,13,14}-win_amd64
{%- else %}
uses: OpenAstronomy/github-actions-workflows/.github/workflows/publish_pure_python.yml@v2
with:
Expand Down