Changes in / [c95a1a5:44d20af] in sasview


Ignore:
Files:
1 deleted
5 edited

Legend:

Unmodified
Added
Removed
  • build_tools/jenkins_osx_build.sh

    ra003f3c r460f5f2  
    4747 
    4848cd $WORKSPACE/sasview/dist 
    49 tar -czf `python -c "import pkg_resources;print '%s.tar.gz' % pkg_resources.get_distribution('sasview').egg_name()"` `python -c "import sasview; print 'SasView-%s.app' % sasview.__version__"` 
     49tar -czf `python -c "import pkg_resources;print '%s.tar.gz' % pkg_resources.get_distribution('sasview').egg_name()"` sasview.app 
  • sasview.latestversion

    r9533593 r0ea31ca  
    1 3.1.1 
     13.1.0 
  • sasview/README.txt

    r9533593 rbe34c71  
    441- Features 
    55=========== 
    6  
    7    - New in Version 3.1.1 
    8      -------------------- 
    9      - Fixes bug #457 that prevented SasView from starting if the user was not 
    10        connected to the internet, or was behind a proxy server. 
    116 
    127   - New in Version 3.1.0 
  • sasview/__init__.py

    r9533593 rbc84fa7  
    1 __version__ = "3.1.1" 
     1__version__ = "3.1.0" 
    22__build__ = "1" 
  • sasview/setup_mac.py

    r49cd712 r018582f  
    116116                                   CFBundleTypeRole="Shell" )],) 
    117117 
    118 #Get version - NB nasty hack. Need to find correct way to give path to installed sasview (AJJ) 
    119 import __init__ as sasviewver 
    120  
    121 VERSION = sasviewver.__version__ 
    122 APPNAME = "SasView "+VERSION 
    123 DMGNAME = "SasView-"+VERSION 
    124  
    125118APP = ['sasview.py'] 
    126119DATA_FILES += ['images','test','media'] 
     
    140133           } 
    141134setup( 
    142     name=APPNAME, 
     135    name="sasview", 
    143136    app=APP, 
    144137    data_files=DATA_FILES, 
     
    147140    setup_requires=['py2app'], 
    148141) 
    149  
    150 #Build dmg 
    151 DMG="dist/%s.dmg"%DMGNAME 
    152 if os.path.exists(DMG): os.unlink(DMG) 
    153 os.system('cd dist && ../../build_tools/dmgpack.sh "%s" "%s.app"'%(DMGNAME,APPNAME)) 
    154 os.system('chmod a+r "%s"'%DMG) 
    155  
Note: See TracChangeset for help on using the changeset viewer.