From 9055b33f6f534cceb182fb323c9b68e753a5b612 Mon Sep 17 00:00:00 2001 From: Nate Prewitt Date: Tue, 15 May 2018 23:06:43 -0700 Subject: [PATCH] install Requests separately on appveyor to fix builds --- Pipfile | 16 ++++++++-------- appveyor.yml | 1 + 2 files changed, 9 insertions(+), 8 deletions(-) diff --git a/Pipfile b/Pipfile index 51e8e846..3e0fd729 100644 --- a/Pipfile +++ b/Pipfile @@ -1,24 +1,24 @@ [[source]] url = "https://pypi.org/simple/" verify_ssl = true +name = "pypi" [dev-packages] - pytest = ">=2.8.0" codecov = "*" -"pytest-httpbin" = "==0.0.7" -"pytest-mock" = "*" -"pytest-cov" = "*" -"pytest-xdist" = "*" +pytest-httpbin = ">=0.0.7" +pytest-mock = "*" +pytest-cov = "*" +pytest-xdist = "*" alabaster = "*" -"readme-renderer" = "*" +readme-renderer = "*" sphinx = "<=1.5.5" pysocks = "*" docutils = "*" "flake8" = "*" tox = "*" detox = "*" -httpbin = "==0.5.0" +httpbin = ">=0.7.0" [packages] -"e1839a8" = {path = ".", editable = true, extras=["socks"]} \ No newline at end of file +"e1839a8" = {path = ".", editable = true, extras = ["socks"]} diff --git a/appveyor.yml b/appveyor.yml index 8c84a9f3..d3f3ca19 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -43,6 +43,7 @@ install: # about it being out of date. - "python -m pip install --upgrade pip wheel" - "C:\\MinGW\\bin\\mingw32-make" + - "pipenv install -e .[socks] --skip-lock" test_script: - "C:\\MinGW\\bin\\mingw32-make coverage"