Skip to content

Commit c29cb57

Browse files
authored
Merge pull request #83 from LuqueDaniel/update-dependencies
Update development dependencies
2 parents 4f22783 + 835bb3e commit c29cb57

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

.github/workflows/pr-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
uses: ./.github/actions/setup_python
1616
- name: 🔍 Lint
1717
run: |
18-
ruff --format=github .
18+
ruff check --output-format github .
1919
mypy .
2020
format:
2121
name: 🎨 Format

.pre-commit-config.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ repos:
1515
args:
1616
- --unsafe
1717
- repo: https://github.com/charliermarsh/ruff-pre-commit
18-
rev: v0.0.259
18+
rev: v0.1.9
1919
hooks:
2020
- id: ruff
2121
- repo: https://github.com/psf/black
22-
rev: 23.1.0
22+
rev: 23.12.1
2323
hooks:
2424
- id: black
2525
- repo: https://github.com/pycqa/isort
@@ -29,7 +29,7 @@ repos:
2929
name: isort (python)
3030
args: ["--profile", "black", "--filter-files"]
3131
- repo: https://github.com/pre-commit/mirrors-mypy
32-
rev: "v1.1.1"
32+
rev: "v1.8.0"
3333
hooks:
3434
- id: mypy
3535
args: [--strict]

pyproject.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[build-system]
2-
requires = ["setuptools >= 67.5.0", "wheel"]
2+
requires = ["setuptools >= 68.0.0", "wheel"]
33
build-backend = "setuptools.build_meta"
44

55
[project]
@@ -40,14 +40,14 @@ Documentation = "https://github.com/LuqueDaniel/lnmc/blob/master/README.md"
4040

4141
[project.optional-dependencies]
4242
dev = [
43-
"pre-commit >=2.20.0",
44-
"black >=22.10",
43+
"pre-commit ==2.21.0",
44+
"black ==23.3.0",
4545
"isort >=5.11.5,<5.12.0", # 5.12.0+ requires Python 3.8+
46-
"ruff >=0.0.259",
47-
"mypy >=0.982",
48-
"pytest >=7.2.0,<8.0.0",
49-
"pytest-cov >=4.0.0",
50-
"types-setuptools ==67.5.0",
46+
"ruff >=0.1.9",
47+
"mypy ~=1.4.1",
48+
"pytest ~=7.4.3",
49+
"pytest-cov ~=4.1.0",
50+
"types-setuptools ==68.0.0",
5151
"types-PyYAML >=6.0.0",
5252
]
5353

0 commit comments

Comments
 (0)