Skip to content

Commit 0d8f016

Browse files
authored
Added support for Python 3.13 (#8)
1 parent 5dca45d commit 0d8f016

6 files changed

Lines changed: 772 additions & 721 deletions

File tree

.github/workflows/tests_and_coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
strategy:
1515
matrix:
16-
python-version: [3.11, 3.12]
16+
python-version: [3.11, 3.12, 3.13]
1717
steps:
1818
- uses: actions/checkout@v3
1919

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
fail_fast: False
22
repos:
33
- repo: https://github.com/pre-commit/pre-commit-hooks
4-
rev: v5.0.0
4+
rev: v6.0.0
55
hooks:
66
- id: check-added-large-files # Check for large files.
77
- id: check-ast # Check Python file syntax using the ast module.
@@ -23,7 +23,7 @@ repos:
2323
hooks:
2424
- id: yesqa # Check if there are any unnecessary 'noqa' comments in the code.
2525
- repo: https://github.com/python-poetry/poetry
26-
rev: 2.1.3
26+
rev: 2.2.1
2727
hooks:
2828
- id: poetry-check # Validate the pyproject.toml file.
2929
- id: poetry-lock # Lock dependencies on changes to the pyproject.toml.

.python-version

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

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
</p>
44

55
<p align="center">
6-
<img src="https://img.shields.io/badge/python-%203.11%20|%203.12-green" alt="Python Versions">
6+
<img src="https://img.shields.io/badge/python-%203.11%20|%203.12%20|%203.13-green" alt="Python Versions">
77
<img src="https://img.shields.io/codecov/c/github/borgholt/error-align/main.svg?style=flat-square" alt="Coverage">
88
<img src="https://github.com/borgholt/error-align/actions/workflows/lint.yml/badge.svg?branch=main" alt="Linting" style="margin-left:5px;">
99
<img src="https://img.shields.io/badge/License-MIT-blue.svg" alt="License">
@@ -74,7 +74,7 @@ Alignment(INSERT: "period")
7474
```
7575

7676
__To reproduce results from the paper:__
77-
- Install with extra evaluation dependencies:
77+
- Install with extra evaluation dependencies - only supported with Python 3.12:
7878
- `pip install error-align[evaluation]`
7979
- Clone this repository:
8080
- `git clone https://github.com/borgholt/error-align.git`

0 commit comments

Comments
 (0)