Overview
The automated testing set up through tox currently fails on the safety check command
Steps to Reproduce
Steps to reproduce the behavior:
- Push a new commit to the repository, which will trigger a GitHub action that runs
tox against three versions of python:
- python 3.7
- python 3.8
- python 3.9
- View the resulting GitHub actions output, it
tox should fail on the python 3.7 run
Expected Behavior
All of the tests should pass, but currently safety check fails with version python 3.7
Screenshots
Your Environment
Computer
These are the details for the tox test:
Python Environment
- Python Version: 3.7.7
- Package Versions:
numpy<=1.22.0
Additional Context
Versions of numpy below 1.22.0 fail safety check because of vulnerabilities in earlier versions. Unfortunately numpy no longer supports python versions below python 3.8, so the only fix for this issue is to either ignore those safety concerns or to drop support for python 3.7 when numpy is a dependency
Overview
The automated testing set up through
toxcurrently fails on thesafety checkcommandSteps to Reproduce
Steps to reproduce the behavior:
toxagainst three versions of python:toxshould fail on the python 3.7 runExpected Behavior
All of the tests should pass, but currently
safety checkfails with version python 3.7Screenshots
Your Environment
Computer
These are the details for the tox test:
Python Environment
numpy<=1.22.0Additional Context
Versions of
numpybelow 1.22.0 fail safety check because of vulnerabilities in earlier versions. Unfortunately numpy no longer supports python versions below python 3.8, so the only fix for this issue is to either ignore those safety concerns or to drop support for python 3.7 whennumpyis a dependency