Skip to content
Merged
Show file tree
Hide file tree
Changes from 17 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 .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ jobs:
uses: OpenAstronomy/github-actions-workflows/.github/workflows/tox.yml@28e947497bed4d6ec3fa1d66d198e95a1d17bc63 # v2.2.1
with:
envs: |
- macos: py311-test
- linux: py312-test
- macos: py312-test
- linux: py313-test
- linux: py314-test
- linux: build_docs

bake_cookies:
Expand Down
7 changes: 3 additions & 4 deletions cookiecutter.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,9 @@
"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{312,313,314}-test
bake_cookies
build-docs

Expand Down
18 changes: 9 additions & 9 deletions {{ cookiecutter.package_name }}/.github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Main CI Workflow {%- set default_python = '3.12' %}
# Main CI Workflow {%- set default_python = '3.14' %}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Too soon?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yes

name: CI

on:
Expand Down Expand Up @@ -35,15 +35,15 @@ jobs:
coverage: codecov
toxdeps: tox-pypi-filter
envs: |
- linux: py313
- linux: py314
secrets:
CODECOV_TOKEN: {{ '${{ secrets.CODECOV_TOKEN }}' }}

sdist_verify:
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 All @@ -60,9 +60,9 @@ jobs:
toxdeps: tox-pypi-filter
posargs: -n auto
envs: |
- windows: py311
- windows: py312
- macos: py312
- linux: py310-oldestdeps
- linux: py312-oldestdeps
- linux: py313-devdeps
secrets:
CODECOV_TOKEN: {{ '${{ secrets.CODECOV_TOKEN }}' }}
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{12,13,14}-manylinux*_x86_64
- cp3{12,13,14}-macosx_x86_64
- cp3{12,13,14}-macosx_arm64
- cp3{12,13,14}-win_amd64
{%- else %}
uses: OpenAstronomy/github-actions-workflows/.github/workflows/publish_pure_python.yml@v2
with:
Expand Down
Loading