Skip to content
Merged
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
6 changes: 3 additions & 3 deletions .github/workflows/readme_example.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This file is a part of the detect-pythons project.
# https://github.com/kurtmckee/detect-pythons
# Copyright 2023-2024 Kurt McKee <contactme@kurtmckee.org>
# Copyright 2023-2025 Kurt McKee <contactme@kurtmckee.org>
# SPDX-License-Identifier: MIT

# This workflow exists for several purposes:
Expand Down Expand Up @@ -47,8 +47,8 @@ jobs:
with:
python-version: |
graalpy-24
pypy-3.10
3.12
pypy-3.11
3.13

- uses: "kurtmckee/detect-pythons@v1"

Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,12 @@ jobs:
- "3.11"
- "3.12"
- "3.13"
cpython-beta: "3.14"
pypys:
- "3.8"
- "3.9"
- "3.10"
- "3.11"

uses: "kurtmckee/github-workflows/.github/workflows/tox.yaml@ca26472ada33aa277527450aa46436f530e3d2c1" # v1.4
with:
Expand Down
2 changes: 1 addition & 1 deletion LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright 2023-2024 Kurt McKee <contactme@kurtmckee.org>
Copyright 2023-2025 Kurt McKee <contactme@kurtmckee.org>

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ and tox test environments stored in ``.tox/``.
with:
python-version: |
graalpy-24
pypy-3.10
3.12
pypy-3.11
3.13

- uses: "kurtmckee/detect-pythons@v1"

Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This file is a part of the detect-pythons project.
# https://github.com/kurtmckee/detect-pythons
# Copyright 2023-2024 Kurt McKee <contactme@kurtmckee.org>
# Copyright 2023-2025 Kurt McKee <contactme@kurtmckee.org>
# SPDX-License-Identifier: MIT

author: "Kurt McKee"
Expand Down
6 changes: 6 additions & 0 deletions changelog.d/20250306_060146_kurtmckee_updates.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Python support
--------------

* Support CPython 3.13.
* Support PyPy 3.11.
* Test against early versions of Python 3.14.
10 changes: 5 additions & 5 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
min_version = 4.3.5
envlist =
coverage_erase
py{3.13, 3.12, 3.11, 3.10, 3.9, 3.8}
pypy{3.10, 3.9, 3.8}
py{3.14, 3.13, 3.12, 3.11, 3.10, 3.9, 3.8}
pypy{3.11, 3.10, 3.9, 3.8}
coverage_report
labels =
update=update
Expand All @@ -14,7 +14,7 @@ package = wheel
wheel_build_env = build_wheel

depends =
py{3.13, 3.12, 3.11, 3.10, 3.9, 3.8}, pypy{3.10, 3.9, 3.8}: coverage_erase
py{3.14, 3.13, 3.12, 3.11, 3.10, 3.9, 3.8}, pypy{3.11, 3.10, 3.9, 3.8}: coverage_erase
deps =
coverage[toml]
pytest
Expand All @@ -31,7 +31,7 @@ commands = coverage erase

[testenv:coverage_report]
depends =
py{3.13, 3.12, 3.11, 3.10, 3.9, 3.8}, pypy{3.10, 3.9, 3.8}
py{3.14, 3.13, 3.12, 3.11, 3.10, 3.9, 3.8}, pypy{3.11, 3.10, 3.9, 3.8}
skip_install = true
deps = coverage[toml]
commands_pre =
Expand All @@ -42,7 +42,7 @@ commands = coverage report

[testenv:update]
description = Update tool versions
base_python = py3.12
base_python = py3.13
recreate = true
skip_install = true
deps =
Expand Down
Loading