Skip to content

Commit

Permalink
Typeguard 4.3.0 (#97)
Browse files Browse the repository at this point in the history
* typeguard 4.3.0

* Remove fixed version of typeguard

* Lock typeguard version only in test requires

---------

Co-authored-by: Geoff Pleiss <[email protected]>
  • Loading branch information
ChristianWirthContinental and gpleiss authored Aug 13, 2024
1 parent 4a55f46 commit 62496b6
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@
install_requires += [
"scipy",
"jaxtyping==0.2.19",
"typeguard~=2.13.3",
"mpmath>=0.19,<=1.3", # avoid incompatibiltiy with torch+sympy with mpmath 1.4
]

Expand Down Expand Up @@ -91,7 +90,13 @@ def find_version(*file_paths):
"sphinx-autodoc-typehints",
"uncompyle6<=3.9.0",
],
"test": ["flake8==5.0.4", "flake8-print==5.0.0", "pytest"],
"test": [
"flake8==5.0.4",
"flake8-print==5.0.0",
"pytest",
"typeguard~=2.13.3" # jaxtyping seems to only be compatible with older typeguard versions
# https://github.com/patrick-kidger/jaxtyping/commit/77c263c3def8ea3bcb7d7642c5a8402c16cf76fb
],
},
test_suite="test",
)

0 comments on commit 62496b6

Please sign in to comment.