From 06940639fb5aa8be65d30b444a108dce033579f2 Mon Sep 17 00:00:00 2001 From: Jacob Hayes Date: Fri, 23 Apr 2021 02:14:43 -0400 Subject: [PATCH] Fix CI py3.6 cryptography install from source --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index cc41bab..2d4eb9b 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -34,7 +34,7 @@ jobs: name: Build package under test and check for PyPI compliance via twine command: | . venv/bin/activate - pip install twine + pip install twine --only-binary=cryptography python setup.py sdist twine check dist/`ls dist/ | grep .tar.gz` - run: