An error occurred fetching the project authors.
- 07 Jan, 2015 1 commit
-
-
Marius Gedminas authored
In setuptools < 8.3 pkg_resources.py was a module, so import pkg_resources print(pkg_resources.__file__) would print something like /home/mg/src/buildout/eggs/setuptools-8.0.4-py2.7.egg/pkg_resources.py Starting from setuptools 8.3 pkg_resources became a package, so the above code prints /home/mg/src/buildout/eggs/setuptools-11.3.1-py2.7.egg/pkg_resources/__init__.py which means a single os.path.dirname() is no longer sufficient to find the location of the .egg file/directory. I'm pretty sure 'setuptools' itself was always a package, so use two os.path.dirname()s on setuptools.__file__ to find the .egg location more reliably with both old and new setuptools versions. Fixes https://github.com/buildout/buildout/issues/227
-
- 14 Dec, 2014 1 commit
-
-
Jim Fulton authored
-
- 09 Jun, 2013 1 commit
-
-
Tres Seaver authored
-
- 03 Jun, 2013 1 commit
-
-
Tres Seaver authored
My doctest / renormalizer fu is not strong enough to deal with the changes to output: - setuptools now has dependencies, and emits output to add them as 'find-links'. I tried adding an 'adding_find_link' renormalizer, but it doesn't suppress the output. - Other failures due to merge tweaking APIs, etc. Again, I'm not competent to fix them in the doctest / renormalizer world: they make my head hurt.
-
- 09 Sep, 2012 1 commit
-
-
Jim Fulton authored
should pass a full environment. The rest of the buildout code already does this.
-
- 04 Sep, 2012 1 commit
-
-
Jim Fulton authored
-
- 26 Aug, 2012 1 commit
-
-
Jim Fulton authored
-
- 21 Aug, 2012 2 commits
-
-
Adam Groszer authored
removing debugger, adding comments
-
Adam Groszer authored
-
- 19 Aug, 2012 1 commit
-
-
Jim Fulton authored
-
- 22 Jul, 2012 2 commits
-
-
Jim Fulton authored
-
Jim Fulton authored
-
- 11 Jun, 2012 2 commits
-
-
Jim Fulton authored
-
Jim Fulton authored
-
- 03 Jun, 2012 1 commit
-
-
Jim Fulton authored
-
- 02 Jun, 2012 1 commit
-
-
Jim Fulton authored
-
- 28 Apr, 2012 2 commits
-
-
Jim Fulton authored
-
Jim Fulton authored
-
- 28 Feb, 2011 1 commit
-
-
Michael Howitz authored
-
- 08 Sep, 2009 1 commit
-
-
Chris Withers authored
Revert to old style path.
-
- 06 Aug, 2009 2 commits
-
-
Chris Withers authored
-
Chris Withers authored
-
- 17 Mar, 2009 1 commit
-
-
Jim Fulton authored
itself always uses it. Remive the build directiory before building to make sure we're clean when we witch Python versions.
-
- 27 Aug, 2008 1 commit
-
-
Georgy Berdyshev authored
Signed-off-by:
Georgy Berdyshev - Георгий Бердышев <codingmaster@gmail.com>
-
- 05 Jul, 2007 1 commit
-
-
Jim Fulton authored
-
- 20 Jun, 2007 1 commit
-
-
Jim Fulton authored
-
- 26 Jun, 2006 1 commit
-
-
Jim Fulton authored
-
- 25 Jun, 2006 1 commit
-
-
Jim Fulton authored
distributions available. This required working around issues with easy_install's --upgrade option: - Upgrade is not recursive. Upgrading a distro doesn't update it's dependencies. - Upgrade doesn't try very hard to avoid searching. If we require a specific version of a distribution, and we already have that distribution, there's no point in looking for a newer one. - easy_install has kind of odd rules for deciding when to look at an index. Now that we use upgrade all the time, easy_install always wants to look at an index. - We get warnings when connecting to index servers, like PyPI that return text/plain not found messages. We now have much greater control over how dependencies are managed. We've essentially taken this over from easy_install. Because we now always talk to an index server and because we want to control anything we do in a test, many of the tests actually run their own web servers. Anyway: - Now handle upgrades correctly, I think. - The egg recipe can now install multiple distributions. - We have the beginnings of offline mode. - The internal architeture is much cleaner. - We've merged the easy_install and egglinker modules, tossing some superfluois apis in the egglinker module.
-
- 17 Jun, 2006 2 commits
-
-
Jim Fulton authored
-
Jim Fulton authored
develop egg link.
-
- 05 Jun, 2006 1 commit
-
-
Jim Fulton authored
-