Changeset 295 for trunk


Ignore:
Timestamp:
05/16/13 09:38:48 (11 years ago)
Author:
dennis
Message:

Bumped version number to 4.3.6, modified debian/control file to ensure a dependicy
for python-argparse when your are using Python 2.6 or lower.

Location:
trunk
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • trunk/CHANGES

    r291 r295  
     1=========== 4.3.6
     2 * Modified sara_nodes.py and new_rack_pbsmon.py so:
     3   - We using argparse instead of OptionParser
     4   - Changed the print statement to an print function which will work with Python 2.5+
     5   - Removed module PBSAdvancedParser.py
     6   Author: Dennis Stam
     7
    18=========== 4.3.5
    29 * PBSQuery bugfix, parsing of node status line with multiple EVENT: settings
  • trunk/debian/changelog

    r290 r295  
     1pbs-python (4.3.6-1) lenny; urgency=low
     2
     3  * See Changes
     4
     5 -- Dennis Stam <dennis.stam@surfsara.nl>  Thu, 16 May 2013 09:07:03 +0200
     6
    17pbs-python (4.3.5-1) lenny; urgency=low
    28
  • trunk/debian/control

    r271 r295  
    99Section: misc
    1010Architecture: any
    11 Depends: libtorque2, ${python:Depends}
     11Depends: libtorque2, ${python:Depends}, ${python:Provides}, python-argparse | python (>= 2.7)
    1212Description: python API for the Torque library
    1313 PBS_PYTHON interface is a wrapper class for the OPENPBS/TORQUE C LIB API.
  • trunk/examples/new_rack_pbsmon.py

    r294 r295  
    130130    import argparse
    131131except ImportError:
    132     _print('Cannot find argparse module', file=sys.stderror)
     132    _print('Cannot find argparse module', file=sys.stderr)
    133133    sys.exit(1)
    134134
  • trunk/examples/sara_nodes.py

    r294 r295  
    6464    import argparse
    6565except ImportError:
    66     _print('Cannot find argparse module', file=sys.stderror)
     66    _print('Cannot find argparse module', file=sys.stderr)
    6767    sys.exit(1)
    6868
  • trunk/pbs_python.spec

    r290 r295  
    44
    55Name: pbs_python
    6 Version: 4.3.5
     6Version: 4.3.6
    77Release: 1%{?dist}
    88License: See LICENSE
  • trunk/setup.py.in

    r290 r295  
    5757setup (
    5858    name = 'pbs_python',
    59     version = '4.3.5',
     59    version = '4.3.6',
    6060    description = 'openpbs/torque python interface',
    6161    license = 'LGPLV3',
Note: See TracChangeset for help on using the changeset viewer.