##// END OF EJS Templates
Backport PR #5501: remove inappropriate wheel tag override...
Backport PR #5501: remove inappropriate wheel tag override I misunderstood how these tags are interpreted. We do not want `py2` and `py3`, we want `py27` and `py33`, which indicate >= matching in the minor version. This means we should build wheels with the minimum supported Python.

File last commit:

r12493:45906317
r16305:d148f9c6
Show More
convert.py
16 lines | 658 B | text/x-python | PythonLexer
"""Convert notebook to the v1 format."""
#-----------------------------------------------------------------------------
# Copyright (C) 2008-2011 The IPython Development Team
#
# Distributed under the terms of the BSD License. The full license is in
# the file COPYING, distributed as part of this software.
#-----------------------------------------------------------------------------
#-----------------------------------------------------------------------------
# Code
#-----------------------------------------------------------------------------
def upgrade(nb, orig_version=None):
raise ValueError('Cannot convert to v1 notebook format')