diff options
author | CoprDistGit <infra@openeuler.org> | 2024-04-14 09:17:29 +0000 |
---|---|---|
committer | CoprDistGit <infra@openeuler.org> | 2024-04-14 09:17:29 +0000 |
commit | dd9bde0310f39a949cdceed93ec2fb477faa6c74 (patch) | |
tree | c153dec992cbb2cc61c7478df945ffbf4636924b /0001-remove-illegal-characters.patch | |
parent | fd0044a398d67a50a32578a2a61befbbea3b9f2d (diff) |
automatic import of python-linear-operator
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 |