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 #211

Merged
merged 2 commits into from
Apr 2, 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
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
files: "giddy\/"
repos:
- repo: https://github.com/psf/black
rev: "23.12.1"
rev: "24.3.0"
hooks:
- id: black
language_version: python3
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: "v0.1.9"
rev: "v0.3.5"
hooks:
- id: ruff

Expand Down
1 change: 1 addition & 0 deletions giddy/components.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
Checking for connected components in a graph.
"""

__author__ = "Sergio J. Rey <[email protected]>"


Expand Down
1 change: 1 addition & 0 deletions giddy/directional.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
Directional Analysis of Dynamic LISAs

"""

__author__ = "Sergio J. Rey <[email protected]>"

__all__ = ["Rose"]
Expand Down
1 change: 1 addition & 0 deletions giddy/ergodic.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
Summary measures for ergodic Markov chains.
"""

__author__ = "Sergio J. Rey <[email protected]>, Wei Kang <[email protected]>"

__all__ = ["steady_state", "var_mfpt_ergodic", "mfpt"]
Expand Down
1 change: 1 addition & 0 deletions giddy/markov.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
Markov based methods for spatial dynamics.
"""

__author__ = "Sergio J. Rey <[email protected]>, Wei Kang <[email protected]>"

__all__ = [
Expand Down
1 change: 1 addition & 0 deletions giddy/rank.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
Rank and spatial rank mobility measures.
"""

__author__ = "Sergio J. Rey <[email protected]>, Wei Kang <[email protected]>"

__all__ = [
Expand Down
Loading