[ANN] functional 0.5 released

Neal Becker ndbecker2 at gmail.com
Sat Feb 11 11:06:01 EST 2006


I just installed from .tar.gz on fedora FC5 x86_64.  I ran into 1 small
problem:

sudo python setup.py install --verbose
running install
running bdist_egg
running egg_info
writing functional.egg-info/PKG-INFO
writing top-level names to functional.egg-info/top_level.txt
reading manifest file 'functional.egg-info/SOURCES.txt'
writing manifest file 'functional.egg-info/SOURCES.txt'
installing library code to build/bdist.linux-x86_64/egg
running install_lib
running build_ext
creating build/bdist.linux-x86_64/egg
copying build/lib.linux-x86_64-2.4/functional.so ->
build/bdist.linux-x86_64/egg
creating stub loader for functional.so
byte-compiling build/bdist.linux-x86_64/egg/functional.py to functional.pyc
creating build/bdist.linux-x86_64/egg/EGG-INFO
writing functional.egg-info/native_libs.txt
copying functional.egg-info/SOURCES.txt ->
build/bdist.linux-x86_64/egg/EGG-INFO
copying functional.egg-info/native_libs.txt ->
build/bdist.linux-x86_64/egg/EGG-INFO
copying functional.egg-info/PKG-INFO ->
build/bdist.linux-x86_64/egg/EGG-INFO
copying functional.egg-info/top_level.txt ->
build/bdist.linux-x86_64/egg/EGG-INFO
copying functional.egg-info/zip-safe ->
build/bdist.linux-x86_64/egg/EGG-INFO
creating 'dist/functional-0.5-py2.4-linux-x86_64.egg' and adding
'build/bdist.linux-x86_64/egg' to it
removing 'build/bdist.linux-x86_64/egg' (and everything under it)
Processing functional-0.5-py2.4-linux-x86_64.egg
Removing /usr/lib64/python2.4/site-packages/functional-0.5-py2.4-linux-x86_64.egg
Copying functional-0.5-py2.4-linux-x86_64.egg
to /usr/lib64/python2.4/site-packages

Installed /usr/lib64/python2.4/site-packages/functional-0.5-py2.4-linux-x86_64.egg

Because this distribution was installed --multi-version or --install-dir,
before you can import modules from this package in an application, you
will need to 'import pkg_resources' and then use a 'require()' call
similar to one of these examples, in order to select the desired version:

    pkg_resources.require("functional")  # latest installed version
    pkg_resources.require("functional==0.5")  # this exact version
    pkg_resources.require("functional>=0.5")  # this version or higher

Processing dependencies for functional==0.5

What's all this about multi-version?  Did I do something wrong?




More information about the Python-list mailing list