diff --git a/.conda/meta.yaml b/.conda/meta.yaml index 18a26e94..c1cac067 100644 --- a/.conda/meta.yaml +++ b/.conda/meta.yaml @@ -20,7 +20,6 @@ requirements: - pytorch>=1.11 - scipy - jaxtyping>=0.2.9 - - typeguard~=2.13.3 test: imports: diff --git a/setup.py b/setup.py index 48daeb1a..96bebfd6 100644 --- a/setup.py +++ b/setup.py @@ -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 ] @@ -91,7 +90,7 @@ 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>=4.3"], }, test_suite="test", )