commit/galaxy-central: natefoo: Fix missing python_daemon egg on python2.4 problem.
1 new changeset in galaxy-central: http://bitbucket.org/galaxy/galaxy-central/changeset/0c1b20871447/ changeset: r5018:0c1b20871447 user: natefoo date: 2011-02-08 18:14:20 summary: Fix missing python_daemon egg on python2.4 problem. affected #: 1 file (103 bytes) --- a/lib/galaxy/eggs/__init__.py Mon Feb 07 18:11:44 2011 -0500 +++ b/lib/galaxy/eggs/__init__.py Tue Feb 08 12:14:20 2011 -0500 @@ -292,7 +292,7 @@ class GalaxyConfig( object ): config_file = os.path.join( galaxy_dir, "universe_wsgi.ini" ) - always_conditional = ( 'GeneTrack', 'pysam', 'ctypes' ) + always_conditional = ( 'GeneTrack', 'pysam', 'ctypes', 'python_daemon' ) def __init__( self ): self.config = ConfigParser.ConfigParser() if self.config.read( GalaxyConfig.config_file ) == []: @@ -322,6 +322,7 @@ "threadframe": lambda: self.config.get( "app:main", "use_heartbeat" ), "guppy": lambda: self.config.get( "app:main", "use_memdump" ), "python_openid": lambda: self.config.get( "app:main", "enable_openid" ), + "python_daemon": lambda: sys.version_info[:2] >= ( 2, 5 ), "GeneTrack": lambda: sys.version_info[:2] >= ( 2, 5 ), "ctypes": lambda: ( "drmaa" in self.config.get( "app:main", "start_job_runners" ).split(",") ) and sys.version_info[:2] == ( 2, 4 ), "pysam": check_pysam() Repository URL: https://bitbucket.org/galaxy/galaxy-central/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email.
participants (1)
-
Bitbucket