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
2 changes: 1 addition & 1 deletion .github/workflows/tests_and_coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.11, 3.12]
python-version: [3.11, 3.12, 3.13]
steps:
- uses: actions/checkout@v3

Expand Down
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
fail_fast: False
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
rev: v6.0.0
hooks:
- id: check-added-large-files # Check for large files.
- id: check-ast # Check Python file syntax using the ast module.
Expand All @@ -23,7 +23,7 @@ repos:
hooks:
- id: yesqa # Check if there are any unnecessary 'noqa' comments in the code.
- repo: https://github.com/python-poetry/poetry
rev: 2.1.3
rev: 2.2.1
hooks:
- id: poetry-check # Validate the pyproject.toml file.
- id: poetry-lock # Lock dependencies on changes to the pyproject.toml.
Expand Down
2 changes: 1 addition & 1 deletion .python-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.12
3.13
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
</p>

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

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