Skip to content

Commit 111545a

Browse files
authored
Merge pull request #474 from staticdev/removal/types-freezegun
Remove types-freezegun
2 parents 6b955f6 + c8e9bdc commit 111545a

File tree

3 files changed

+3
-16
lines changed

3 files changed

+3
-16
lines changed

noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ def mypy(session: Session) -> None:
145145
"""Type-check using mypy."""
146146
args = session.posargs or ["src", "tests", "docs/conf.py"]
147147
session.install(".")
148-
session.install("mypy", "pytest", "types-freezegun")
148+
session.install("mypy", "freezegun", "pytest")
149149
session.run("mypy", *args)
150150
if not session.posargs:
151151
session.run("mypy", f"--python-executable={sys.executable}", "noxfile.py")

poetry.lock

Lines changed: 1 addition & 13 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ darglint = ">=1.8.1"
3232
flake8 = ">=5.0.4"
3333
flake8-bugbear = ">=21.9.2"
3434
flake8-docstrings = ">=1.6.0"
35-
freezegun = ">=1.2.0"
35+
freezegun = ">=1.2.2"
3636
furo = ">=2021.11.12"
3737
isort = ">=5.10.1"
3838
mypy = ">=0.991"
@@ -47,7 +47,6 @@ safety = ">=2.1.0"
4747
sphinx = ">=4.3.2"
4848
sphinx-autobuild = ">=2021.3.14"
4949
typeguard = ">=2.13.3"
50-
types-freezegun = ">=1.1.6"
5150
xdoctest = {extras = ["colors"], version = ">=0.15.10"}
5251

5352
[tool.coverage.paths]

0 commit comments

Comments
 (0)