Skip to content

Commit df1b3e9

Browse files
authored
Add Python 3.13 Support
Resolves #22
1 parent 34661fa commit df1b3e9

File tree

5 files changed

+5
-4
lines changed

5 files changed

+5
-4
lines changed

.envrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ if command -v pyenv >/dev/null 2>&1; then
22
layout pyenv $(cat runtimes.txt)
33
elif command -v nix >/dev/null 2>&1; then
44
use flake
5-
layout python python3.12
5+
layout python python3.13
66
fi

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
[![pre-commit](https://github.com/jteppinette/python-logfmter/actions/workflows/pre-commit.yml/badge.svg)](https://github.com/jteppinette/python-logfmter/actions/workflows/pre-commit.yml)
66
[![test](https://github.com/jteppinette/python-logfmter/actions/workflows/test.yml/badge.svg)](https://github.com/jteppinette/python-logfmter/actions/workflows/test.yml)
7-
[![python-3.9-3.10-3.11-3.12](https://img.shields.io/badge/python-3.9%20|%203.10%20|%203.11|%203.12-blue.svg)](.github/workflows/test.yml)
7+
[![python-3.9-3.10-3.11-3.12-3.13](https://img.shields.io/badge/python-3.9%20|%203.10%20|%203.11|%203.12|%203.13-blue.svg)](.github/workflows/test.yml)
88

99
Add [logfmt](https://www.brandur.org/logfmt) structured logging using the stdlib logging module and without changing a single log call.
1010

flake.nix

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
pkgs.python310
1919
pkgs.python311
2020
pkgs.python312
21+
pkgs.python313
2122
];
2223
shellHook = "unset PYTHONPATH";
2324
};

runtimes.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.9 3.10 3.11 3.12
1+
3.9 3.10 3.11 3.12 3.13

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py39,py310,py311,py312
2+
envlist = py39,py310,py311,py312,py313
33

44
[testenv]
55
deps = pytest

0 commit comments

Comments
 (0)