diff --git a/.github/workflows/lint_python.yml b/.github/workflows/lint_python.yml index 9fd1701..214ea67 100644 --- a/.github/workflows/lint_python.yml +++ b/.github/workflows/lint_python.yml @@ -17,4 +17,3 @@ jobs: - run: python setup.py install - run: mypy --exclude './build/lib/farmOS/__init__.py' --ignore-missing-imports . || true - run: shopt -s globstar && pyupgrade --py36-plus **/*.py - - run: safety check diff --git a/setup.py b/setup.py index 9256534..e824c60 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ install_requires = ["requests-oauthlib~=1.3.1", "pydantic~=1.7.3"] -tests_require = ["pytest", "black~=23.0"] +tests_require = ["pytest", "black~=23.0", "setuptools~=68.0"] with open("README.md") as fh: readme = fh.read()