Skip to content

Commit

Permalink
Merge pull request #83 from LuqueDaniel/update-dependencies
Browse files Browse the repository at this point in the history
Update development dependencies
  • Loading branch information
LuqueDaniel authored Dec 27, 2023
2 parents 4f22783 + 835bb3e commit c29cb57
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pr-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
uses: ./.github/actions/setup_python
- name: 🔍 Lint
run: |
ruff --format=github .
ruff check --output-format github .
mypy .
format:
name: 🎨 Format
Expand Down
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ repos:
args:
- --unsafe
- repo: https://github.com/charliermarsh/ruff-pre-commit
rev: v0.0.259
rev: v0.1.9
hooks:
- id: ruff
- repo: https://github.com/psf/black
rev: 23.1.0
rev: 23.12.1
hooks:
- id: black
- repo: https://github.com/pycqa/isort
Expand All @@ -29,7 +29,7 @@ repos:
name: isort (python)
args: ["--profile", "black", "--filter-files"]
- repo: https://github.com/pre-commit/mirrors-mypy
rev: "v1.1.1"
rev: "v1.8.0"
hooks:
- id: mypy
args: [--strict]
Expand Down
16 changes: 8 additions & 8 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[build-system]
requires = ["setuptools >= 67.5.0", "wheel"]
requires = ["setuptools >= 68.0.0", "wheel"]
build-backend = "setuptools.build_meta"

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

[project.optional-dependencies]
dev = [
"pre-commit >=2.20.0",
"black >=22.10",
"pre-commit ==2.21.0",
"black ==23.3.0",
"isort >=5.11.5,<5.12.0", # 5.12.0+ requires Python 3.8+
"ruff >=0.0.259",
"mypy >=0.982",
"pytest >=7.2.0,<8.0.0",
"pytest-cov >=4.0.0",
"types-setuptools ==67.5.0",
"ruff >=0.1.9",
"mypy ~=1.4.1",
"pytest ~=7.4.3",
"pytest-cov ~=4.1.0",
"types-setuptools ==68.0.0",
"types-PyYAML >=6.0.0",
]

Expand Down

0 comments on commit c29cb57

Please sign in to comment.