Skip to content

Commit 117040e

Browse files
committed
Pre-commit python version and remove wheel
1 parent fd64746 commit 117040e

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
default_language_version:
2-
python: python3.11 # set for project python version
2+
python: python3.12
33
repos:
44
- repo: local
55
hooks:
@@ -24,6 +24,6 @@ repos:
2424
types: ["python"]
2525
- id: safety
2626
name: safety
27-
entry: pipenv check --ignore 70612
27+
entry: pipenv check
2828
language: system
2929
pass_filenames: false

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ ruff: # Run 'ruff' linter and print a preview of errors
4444
pipenv run ruff check .
4545

4646
safety: # Check for security vulnerabilities and verify Pipfile.lock is up-to-date
47-
pipenv check --ignore 70612
47+
pipenv check
4848
pipenv verify
4949

5050
lint-apply: black-apply ruff-apply # Apply changes with 'black' and resolve 'fixable errors' with 'ruff'

pyproject.toml

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

55
[project]

0 commit comments

Comments
 (0)