blob: 644497c717e716d872b32465bd816e4870174d44 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
diff --git a/linear_operator.egg-info/requires.txt b/linear_operator.egg-info/requires.txt
index f4f2a4a..dab301f 100644
--- a/linear_operator.egg-info/requires.txt
+++ b/linear_operator.egg-info/requires.txt
@@ -1,7 +1,7 @@
torch>=1.11
scipy
jaxtyping>=0.2.9
-typeguard~=2.13.3
+typeguard>=2.13.3
[dev]
ufmt
diff --git a/setup.py b/setup.py
index 163bd91..e6f7b3b 100644
--- a/setup.py
+++ b/setup.py
@@ -37,7 +37,7 @@ except ImportError:
pass
# Other requirements
-install_requires += ["scipy", "jaxtyping>=0.2.9", "typeguard~=2.13.3"]
+install_requires += ["scipy", "jaxtyping>=0.2.9", "typeguard>=2.13.3"]
# Get version
|