Skip to content

Commit

Permalink
Merge pull request #2498 from freakboy3742/freezegun-fix
Browse files Browse the repository at this point in the history
Use a pre-release freezegun on Python 3.13.
  • Loading branch information
mhsmith authored Apr 12, 2024
2 parents d1feaab + 987407d commit 0a50e05
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions changes/2498.misc.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
The version of Freezegun used on Python 3.13 has been pinned to a prerelease to avoid an incompatibility with Python 3.13.0a6.
4 changes: 3 additions & 1 deletion core/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,9 @@ dev = [
"setuptools-scm == 8.0.4",
"tox == 4.14.2",
# typing-extensions needed for TypeAlias added in Py 3.10
"typing-extensions == 4.9.0 ; python_version < '3.10'"
"typing-extensions == 4.9.0 ; python_version < '3.10'",
# FIXME: Freezegun 1.4.0 is incompatible with Python 3.13.0a6; use a pre-release
"freezegun @ git+https://github.com/spulec/freezegun#c65f4db6ef4824538061978be30954c1c739d380b ; python_version >= '3.13'",
]
docs = [
"furo == 2024.1.29",
Expand Down

0 comments on commit 0a50e05

Please sign in to comment.