Skip to content

Commit

Permalink
Merge pull request Ponte-Energy-Partners#276 from jakob-keller/depend…
Browse files Browse the repository at this point in the history
…encies

Bump dev dependencies
  • Loading branch information
jakob-keller committed Jan 30, 2024
2 parents 650b3b3 + 250f8d1 commit cd14a2e
Show file tree
Hide file tree
Showing 11 changed files with 58 additions and 51 deletions.
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,11 @@ repos:
- id: requirements-txt-fixer
- id: trailing-whitespace
- repo: https://github.com/psf/black-pre-commit-mirror
rev: 24.1.0
rev: 24.1.1
hooks:
- id: black
- repo: https://github.com/charliermarsh/ruff-pre-commit
rev: v0.1.14
rev: v0.1.15
hooks:
- id: ruff
- repo: https://github.com/pre-commit/mirrors-mypy
Expand Down
1 change: 1 addition & 0 deletions peprock/datetime/awareness.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
>>> is_aware(aware)
True
"""

from __future__ import annotations
Expand Down
1 change: 1 addition & 0 deletions peprock/datetime/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
>>> dt + ONE_HOUR + 5 * ONE_SECOND
datetime.datetime(2023, 3, 2, 22, 17, 17)
"""

import datetime
Expand Down
1 change: 1 addition & 0 deletions peprock/datetime/period.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
... ) in period
False
"""

import collections.abc
Expand Down
1 change: 1 addition & 0 deletions peprock/models/measurement.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
>>> int(Measurement(0.123456, MetricPrefix.kilo))
123
"""

from __future__ import annotations
Expand Down
1 change: 1 addition & 0 deletions peprock/models/metric_prefix.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
>>> MetricPrefix.centi.convert(0.7, to=MetricPrefix.milli)
7.0
"""

from __future__ import annotations
Expand Down
1 change: 1 addition & 0 deletions peprock/models/unit.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
>>> Unit("W")
<Unit.watt: 'W'>
"""

from __future__ import annotations
Expand Down
1 change: 1 addition & 0 deletions peprock/patterns/observer.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
>>> subject.notify_observers("Hello, world!")
My observer notified by Subject: Hello, world!
"""

from __future__ import annotations
Expand Down
1 change: 1 addition & 0 deletions peprock/subclasses/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
>>> len(get(object)) # doctest: +SKIP
280
"""

from __future__ import annotations
Expand Down
95 changes: 47 additions & 48 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ coverage = { version = "^7.2.1", extras = ["toml"] }
mypy = "^1.1.1"
pre-commit = "^3.1.1"
pdoc3 = "^0.10.0"
pytest = "^7.2.2"
pytest = "^8.0.0"
pytest-cov = "^4.0.0"
ruff = "^0.1.7"

Expand Down

0 comments on commit cd14a2e

Please sign in to comment.