Skip to content

Commit

Permalink
Add Python 3.13 Support
Browse files Browse the repository at this point in the history
Resolves #22
  • Loading branch information
jteppinette authored Jan 23, 2025
1 parent 34661fa commit df1b3e9
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .envrc
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ if command -v pyenv >/dev/null 2>&1; then
layout pyenv $(cat runtimes.txt)
elif command -v nix >/dev/null 2>&1; then
use flake
layout python python3.12
layout python python3.13
fi
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

[![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)
[![test](https://github.com/jteppinette/python-logfmter/actions/workflows/test.yml/badge.svg)](https://github.com/jteppinette/python-logfmter/actions/workflows/test.yml)
[![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)
[![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)

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

Expand Down
1 change: 1 addition & 0 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
pkgs.python310
pkgs.python311
pkgs.python312
pkgs.python313
];
shellHook = "unset PYTHONPATH";
};
Expand Down
2 changes: 1 addition & 1 deletion runtimes.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.9 3.10 3.11 3.12
3.9 3.10 3.11 3.12 3.13
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py39,py310,py311,py312
envlist = py39,py310,py311,py312,py313

[testenv]
deps = pytest
Expand Down

0 comments on commit df1b3e9

Please sign in to comment.