Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[pre-commit.ci] pre-commit autoupdate #72

Merged
merged 2 commits into from
Apr 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ repos:
- id: isort

- repo: https://github.com/asottile/pyupgrade
rev: v3.15.0
rev: v3.15.2
hooks:
- id: pyupgrade
args: [ --py38-plus ]
Expand All @@ -54,7 +54,7 @@ repos:

# Notebook formatting
- repo: https://github.com/nbQA-dev/nbQA
rev: 1.7.1
rev: 1.8.5
hooks:
- id: nbqa-isort
additional_dependencies: [ isort ]
Expand All @@ -75,6 +75,6 @@ repos:
args: [ '--futures=true' ]

- repo: https://github.com/psf/black
rev: 23.12.1
rev: 24.3.0
hooks:
- id: black
1 change: 1 addition & 0 deletions tests/test_pdf_cmsshape.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Tests for CMSShape PDF."""

import numpy as np
import pytest
import tensorflow as tf
Expand Down
1 change: 1 addition & 0 deletions tests/test_pdf_conv.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Example test for a pdf or function."""

import numpy as np
import pytest
import tensorflow as tf
Expand Down
1 change: 1 addition & 0 deletions tests/test_pdf_kde.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Example test for a pdf or function."""

import numpy as np
import pytest
import tensorflow as tf
Expand Down
1 change: 1 addition & 0 deletions tests/test_pdf_relbw.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Tests for relativistic Breit-Wigner PDF."""

import pytest
import tensorflow as tf
import zfit
Expand Down
1 change: 1 addition & 0 deletions zfit_physics/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Top-level package for zfit."""

from pkg_resources import get_distribution

__version__ = get_distribution(__name__).version
Expand Down
1 change: 1 addition & 0 deletions zfit_physics/models/pdf_argus.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""ARGUS PDF (https://en.wikipedia.org/wiki/ARGUS_distribution)"""

from typing import Optional

import numpy as np
Expand Down
1 change: 1 addition & 0 deletions zfit_physics/models/pdf_example.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
Create a module for each pdf that you add.
"""

import zfit


Expand Down
Loading