diff options
Diffstat (limited to '0001-remove-illegal-characters.patch')
-rw-r--r-- | 0001-remove-illegal-characters.patch | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/0001-remove-illegal-characters.patch b/0001-remove-illegal-characters.patch new file mode 100644 index 0000000..644497c --- /dev/null +++ b/0001-remove-illegal-characters.patch @@ -0,0 +1,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 |