Skip to content

Commit 3ce741e

Browse files
Merge pull request #6 from nestauk/widen-python
Widen compatible python versions
2 parents 8975c08 + f71c183 commit 3ce741e

File tree

3 files changed

+440
-21
lines changed

3 files changed

+440
-21
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ To use all three of these hooks, you can add the following to your `.pre-commit-
1313
```yaml
1414
repos:
1515
- repo: https://github.com/nestauk/pre-commit-hooks
16-
rev: v1.1.1
16+
rev: v1.2.0
1717
hooks:
1818
- id: nbstripout-preserve-timestamp
1919
- id: jupytext-enforce-pairing

pyproject.toml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,16 @@ packages = ["hooks"]
77

88
[project]
99
name = "pre_commit_hooks"
10-
version = "1.1.1"
10+
version = "1.2.0"
1111
description = "A library of custom `pre-commit-hooks` used in other projects"
1212
authors = [{ name = "Nesta" }]
1313
license = { text = "MIT" }
1414
readme = "README.md"
15-
requires-python = "==3.13.*"
16-
dependencies = ["jupytext>=1.17.2", "nbstripout>=0.8.1"]
15+
requires-python = ">=3.9"
16+
dependencies = [
17+
"jupytext>=1.17.2",
18+
"nbstripout>=0.8.1",
19+
]
1720

1821
[project.urls]
1922
repository = "https://github.com/nestauk/pre-commit-hooks"

0 commit comments

Comments
 (0)