Skip to content

Commit 7366efe

Browse files
committed
Updating vendored deps. and minor updates to config system.
1 parent 5217f47 commit 7366efe

File tree

8 files changed

+30
-10
lines changed

8 files changed

+30
-10
lines changed

etc/conf/base.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Base
22
certifi==14.05.14
3-
setuptools==5.6
3+
setuptools==7.0
44
wheel==0.24.0
55
pip==1.5.6
66

etc/getconf.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,8 @@
4040
On posix, posix Python and shell scripts are executed before mac or linux
4141
scripts.
4242
43+
The base scripts or packages are always installed first before platform-specific ones.
44+
4345
For example a tree could be looking like this::
4446
etc/conf
4547
base.txt : base pip requirements for all platforms
@@ -81,10 +83,10 @@
8183
base = ('base',)
8284

8385
# known full file names with txt extension for requirements
84-
requirements = tuple(p + '.txt' for p in base + platform_names)
86+
requirements = tuple(p + '.txt' for p in platform_names + base)
8587

8688
# known full file names with py extensions for scripts
87-
python_scripts = tuple(p + '.py' for p in base + platform_names)
89+
python_scripts = tuple(p + '.py' for p in platform_names + base)
8890

8991
# known full file names of shell scripts
9092
shell_scripts = tuple(p + '.sh' for p in platform_names)

thirdparty/MarkupSafe.ABOUT

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ dje_license: bsd-new
99

1010
vcs_tool: git
1111
vcs_repository: https://github.com/mitsuhiko/jinja2.git
12-
license_text_file:MarkupSafe.LICENSE
12+
license_text_file: MarkupSafe.LICENSE
1313

1414
copyright: Copyright (c) 2010 by Armin Ronacher and contributors.
1515
owner: Armin Ronacher

thirdparty/pip.ABOUT

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ about_resource: pip-1.5.6-py2.py3-none-any.whl
22
version: 1.5.6
33
download_url: https://pypi.python.org/packages/source/p/pip/pip-1.5.6.tar.gz#md5=01026f87978932060cc86c1dc527903e
44

5-
name:pip
5+
name: pip
66
owner: The pip developers
77
88
home_url: http://www.pip-installer.org
516 KB
Binary file not shown.

thirdparty/setuptools.ABOUT

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
about_resource: setuptools-5.6-py2.py3-none-any.whl
1+
about_resource: setuptools-7.0-py2.py3-none-any.whl
22
name: setuptools
3-
version: 5.6
3+
version: 7.0
44

5-
download_url: https://pypi.python.org/packages/3.4/s/setuptools/setuptools-5.6-py2.py3-none-any.whl#md5=4503e42d67edc51e293ba9be4af799a5
5+
download_url: https://pypi.python.org/packages/3.4/s/setuptools/setuptools-7.0-py2.py3-none-any.whl#md5=918e7e5ea108507e1ffbbdfccc3496b1
66

77
home_url: https://pypi.python.org/pypi/setuptools
88
owner: Python Packaging Authority

thirdparty/virtualenv.ABOUT

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
about_resource: virtualenv-1.11.6-py2.py3-none-any.whl
2+
version: 1.11.6
3+
download_url: https://raw.githubusercontent.com/pypa/virtualenv/1.11.6/virtualenv.py
4+
5+
vcs_tool: git
6+
vcs_repository: https://github.com/pypa/virtualenv.git
7+
8+
name: virtualenv
9+
home_url: http://virtualenv.org/
10+
owner: The virtualenv developers
11+
12+
license_url: https://raw.github.com/pypa/virtualenv/develop/LICENSE.txt
13+
license_text_file: virtualenv.LICENSE
14+
dje_license: mit
15+
copyright: Copyright (c) 2007 Ian Bicking and Contributors
16+
Copyright (c) 2009 Ian Bicking, The Open Planning Project
17+
Copyright (c) 2011-2014 The virtualenv developers

thirdparty/wheel.ABOUT

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
1-
about_resource:wheel-0.24.0-py2.py3-none-any.whl
1+
about_resource: wheel-0.24.0-py2.py3-none-any.whl
22
version: 0.24.0
33
download_url: https://pypi.python.org/packages/py2.py3/w/wheel/wheel-0.24.0-py2.py3-none-any.whl#md5=4c24453cda2177fd42c5d62d6434679a
44

55
name: wheel
6+
home_url: https://bitbucket.org/pypa/wheel
67
vcs_tool: hg
7-
vcs_repository:https://bitbucket.org/pypa/wheel
8+
vcs_repository: https://bitbucket.org/pypa/wheel
89

910
copyright: copyright (c) 2012-2014 Daniel Holth <[email protected]> and
1011
contributors.

0 commit comments

Comments
 (0)