You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@allura.apache.org by br...@apache.org on 2020/01/10 21:57:58 UTC

[allura] 01/03: [#8347] only install faulthandler when on py2 environments (py3.3 stdlib) and upgrade pip-tools

This is an automated email from the ASF dual-hosted git repository.

brondsem pushed a commit to branch db/8347
in repository https://gitbox.apache.org/repos/asf/allura.git

commit 076736cda59adb200b13bf067d5bd02974e5cfa6
Author: Dave Brondsema <db...@slashdotmedia.com>
AuthorDate: Thu Jan 9 23:19:13 2020 +0000

    [#8347] only install faulthandler when on py2 environments (py3.3 stdlib) and upgrade pip-tools
---
 requirements-dev.txt | 4 ++--
 requirements.in      | 2 +-
 requirements.txt     | 4 ++--
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/requirements-dev.txt b/requirements-dev.txt
index 0621a1a..f92e32b 100644
--- a/requirements-dev.txt
+++ b/requirements-dev.txt
@@ -16,7 +16,7 @@ imagesize==1.1.0          # via sphinx
 jinja2==2.10              # via sphinx
 markupsafe==1.1.1         # via jinja2
 packaging==19.0           # via sphinx
-pip-tools==4.0.0
+pip-tools==4.3.0
 pygments==2.4.2           # via sphinx
 pyparsing==2.4.0          # via packaging
 pytz==2019.1              # via babel
@@ -33,4 +33,4 @@ typing==3.7.4             # via sphinx
 urllib3==1.25.3           # via requests
 
 # The following packages are considered to be unsafe in a requirements file:
-# setuptools==41.4.0        # via sphinx
+# setuptools==44.0.0        # via sphinx
diff --git a/requirements.in b/requirements.in
index a8276a7..d2d28c3 100644
--- a/requirements.in
+++ b/requirements.in
@@ -8,7 +8,7 @@ cryptography==2.6.1
 decorator
 EasyWidgets>=0.3.3
 emoji
-faulthandler
+faulthandler ; python_version < "3.3"
 feedparser
 # FormEncode may need v2.0 to work past py3.3 or so?  https://github.com/formencode/formencode/issues/140
 FormEncode
diff --git a/requirements.txt b/requirements.txt
index 91b2080..5a7b7c2 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -27,7 +27,7 @@ docutils==0.15.2          # via pypeline
 easywidgets==0.3.5
 emoji==0.5.3
 enum34==1.1.6             # via astroid, colander, cryptography, traitlets
-faulthandler==3.1
+faulthandler==3.1 ; python_version < "3.3"
 feedparser==5.2.1
 formencode==1.3.1
 funcsigs==1.0.2           # via beaker, mock
@@ -106,4 +106,4 @@ webtest==2.0.33
 wrapt==1.11.2
 
 # The following packages are considered to be unsafe in a requirements file:
-# setuptools==41.2.0        # via ipython
+# setuptools