Skip to content

Commit 542850b

Browse files
authored
Chore: update dependencies (#26)
1 parent 2c0c8a9 commit 542850b

File tree

4 files changed

+124
-121
lines changed

4 files changed

+124
-121
lines changed

.github/workflows/check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ permissions:
99
contents: read
1010

1111
jobs:
12-
lint-and-typecheck:
12+
python-checks:
1313
runs-on: ubuntu-latest
1414

1515
steps:

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ repos:
66
- id: end-of-file-fixer
77
- id: trailing-whitespace
88
- repo: https://github.com/astral-sh/ruff-pre-commit
9-
rev: v0.14.3
9+
rev: v0.14.6
1010
hooks:
1111
- id: ruff-check
1212
- id: ruff-format

pyproject.toml

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,3 @@
1-
[build-system]
2-
requires = ["hatchling"]
3-
build-backend = "hatchling.build"
4-
5-
[tool.hatch.version]
6-
path = "wavey/__init__.py"
7-
81
[project]
92
name = "wavey"
103
dynamic = ["version"]
@@ -39,6 +32,10 @@ dependencies = [
3932
"tyro",
4033
]
4134

35+
[build-system]
36+
requires = ["hatchling"]
37+
build-backend = "hatchling.build"
38+
4239
[dependency-groups]
4340
dev = [
4441
"mypy",
@@ -48,6 +45,9 @@ dev = [
4845
"types-tqdm",
4946
]
5047

48+
[tool.hatch.version]
49+
path = "wavey/__init__.py"
50+
5151
[[tool.mypy.overrides]]
5252
module = [
5353
"mpl_toolkits.basemap",
@@ -58,3 +58,6 @@ ignore_missing_imports = true
5858

5959
[tool.ruff]
6060
line-length = 120
61+
62+
[tool.ruff.lint]
63+
select = ["E", "F", "I"]

0 commit comments

Comments
 (0)