Skip to content
Snippets Groups Projects
Commit 4865086c authored by Isidora Araya's avatar Isidora Araya
Browse files

fix pytest ignored warnings

parent 6c371067
No related branches found
No related tags found
1 merge request!23Saving qsymm models
Pipeline #111791 failed
...@@ -5,7 +5,7 @@ dependencies: ...@@ -5,7 +5,7 @@ dependencies:
- python=3.7 - python=3.7
- numpy=1.16.2 - numpy=1.16.2
- scipy=1.1.0 - scipy=1.1.0
- sympy=1.4 - sympy=1.3
- tinyarray=1.2.3 - tinyarray=1.2.3
## Dev Dependencies ## Dev Dependencies
# Testing # Testing
......
...@@ -4,7 +4,8 @@ filterwarnings = ...@@ -4,7 +4,8 @@ filterwarnings =
# Remove once we rely on scipy v1.5 (maybe earlier) # Remove once we rely on scipy v1.5 (maybe earlier)
ignore:can't resolve package from __spec__ or __package__:ImportWarning ignore:can't resolve package from __spec__ or __package__:ImportWarning
ignore:the matrix subclass is not the recommended way to represent matrices:PendingDeprecationWarning ignore:the matrix subclass is not the recommended way to represent matrices:PendingDeprecationWarning
# Remove once we rely on sympy v1.3 # Remove once sympy fixes how it uses distutils
ignore:np\.asscalar\(a\) is deprecated since NumPy v1\.16, use a\.item\(\) instead:DeprecationWarning ignore:distutils Version classes are deprecated. Use packaging.version instead:DeprecationWarning
# Remove once setuptools figures it out # Remove once setuptools figures it out
ignore:lib2to3:PendingDeprecationWarning ignore:lib2to3:PendingDeprecationWarning
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment