~sbaldassin/autopilot/fix_mir

« back to all changes in this revision

Viewing changes to autopilot/tests/functional/__init__.py

  • Committer: Tarmac
  • Author(s): Omer Akram
  • Date: 2016-08-04 12:06:31 UTC
  • mfrom: (580.1.3 trunk)
  • Revision ID: tarmac-20160804120631-2on2hkg4cuin71lx
Prepare for 1.6.0 release.

Approved by Christopher Lee, platform-qa-bot.

Show diffs side-by-side

added added

removed removed

Lines of Context:
173
173
 
174
174
load_entry_point_script = """\
175
175
#!/usr/bin/python
176
 
__requires__ = 'autopilot==1.5.0'
 
176
__requires__ = 'autopilot==1.6.0'
177
177
import sys
178
178
from pkg_resources import load_entry_point
179
179
 
180
180
if __name__ == '__main__':
181
181
    sys.exit(
182
 
        load_entry_point('autopilot==1.5.0', 'console_scripts', 'autopilot3')()
 
182
        load_entry_point('autopilot==1.6.0', 'console_scripts', 'autopilot3')()
183
183
    )
184
184
"""
185
185