PMXBOT Log file Viewer

Help | Karma | Search:

#pypa-dev logs for Thursday the 25th of December, 2014

(Back to #pypa-dev overview) (Back to channel listing) (Animate logs)
[00:37:21] <choochootrain> quick question - is get-pip.py supposed to install the latest version of pip? the get-pip.py on the 1.5.6 tag is installing pip 6.0.3 and i'm not sure if that's intentional or not
[00:38:50] <dstufft> choochootrain: yea it installs the latest version, it's really just the equivilant of calling ``pip install pip``
[00:39:05] <dstufft> I've thought about adding a flag to make it possible to control the version
[00:41:22] <choochootrain> ok just checking :) i'm easy_installing pip 1.5.6, is there a better way to get a particular release?
[00:42:02] <dstufft> you can get-pip.py && pip install pip==1.5.6
[00:44:01] <choochootrain> ++ thanks!
[01:55:17] <dstufft> pf_moore: ping
[06:00:32] <tomprince> dstufft Will get-pip.py install pip==1.5.6 work?
[06:05:37] <dstufft> tomprince: don't think so, I think it'll get a duplicate requirements error
[06:05:58] <dstufft> tomprince: should be trivial to make it work though, just scan sys.argv for a ana rgument that says pip and if it exists don't add our own
[14:39:30] <pmxbot> jaraco pushed 2 commits to setuptools (https://bitbucket.org/pypa/setuptools/) :
[14:39:30] <pmxbot> Removed svn support from setuptools. Ref #313.
[14:39:30] <pmxbot> Update changelog
[15:31:31] <pmxbot> jaraco pushed 4 commits to setuptools (https://bitbucket.org/pypa/setuptools/) :
[15:31:31] <pmxbot> Move api_tests to pkg_resources package. Fixes #312.
[15:31:31] <pmxbot> Update API docs to reflect relocation of pkg_resources from module to package.
[15:31:31] <pmxbot> Include api_tests.txt in pytest invocation. Ref #312. Ref #311.
[15:31:31] <pmxbot> Merge inclusion of api_tests.txt.
[15:37:03] <dstufft> Merry christmas and/or happy thursday everyone ;)
[15:45:13] <msabramo> merry pipxmas
[17:54:43] <pmxbot> jaraco pushed 3 commits to setuptools (https://bitbucket.org/pypa/setuptools/) :
[17:54:43] <pmxbot> Run bootstrap in order to purge the file finder from the egg_info (until travis is using Setuptoools 9.0).
[17:54:43] <pmxbot> Removing test data
[17:54:43] <pmxbot> Update documentation on release frequency.
[18:02:36] <philadams> hello all. happy holidays.
[18:02:55] <philadams> qq: what's the best way to test *just* a single command? e.g. /tests/functional/show.py
[18:03:39] <philadams> aha
[18:03:44] <philadams> py.test /tests/functional/show.py
[18:03:45] <philadams> thanks.
[20:32:54] <philadams> hi all. quick question. i'm writing a test for a pip command that has a side-effect
[20:33:16] <philadams> obviously i don't want that side effect to happen while running tests
[20:33:47] <philadams> so i want to, for example, replace pip.commands.mycommand.myfunc = lambda x: None
[20:34:25] <philadams> however, i think that pip's PipTestEnvironment that sets up a virtual env isn't using my redefined myfunc
[20:34:38] <philadams> when calling/testing/running my command
[20:34:46] <philadams> any way i can get some help with this?
[20:35:31] <philadams> thanks in advance