Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.11/site-packages/IPython/core/release.py: 94%

Shortcuts on this page

r m x   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

16 statements  

1"""Release data for the IPython project.""" 

2 

3#----------------------------------------------------------------------------- 

4# Copyright (c) 2008, IPython Development Team. 

5# Copyright (c) 2001, Fernando Perez <fernando.perez@colorado.edu> 

6# Copyright (c) 2001, Janko Hauser <jhauser@zscout.de> 

7# Copyright (c) 2001, Nathaniel Gray <n8gray@caltech.edu> 

8# 

9# Distributed under the terms of the Modified BSD License. 

10# 

11# The full license is in the file COPYING.txt, distributed with this software. 

12#----------------------------------------------------------------------------- 

13 

14# IPython version information. An empty _version_extra corresponds to a full 

15# release. 'dev' as a _version_extra string means this is a development 

16# version 

17_version_major = 9 

18_version_minor = 16 

19_version_patch = 1 

20_version_extra = ".dev" 

21# _version_extra = "b2" 

22_version_extra = "" # Uncomment this for full releases 

23 

24# Construct full version string from these. 

25_ver = [_version_major, _version_minor, _version_patch] 

26 

27__version__ = '.'.join(map(str, _ver)) 

28if _version_extra: 

29 __version__ = __version__ + _version_extra 

30 

31version = __version__ # backwards compatibility name 

32version_info = (_version_major, _version_minor, _version_patch, _version_extra) 

33 

34 

35license = "BSD-3-Clause" 

36 

37authors = { 

38 "Fernando": ("Fernando Perez", "fperez.net@gmail.com"), 

39 "M": ("M Bussonnier", "mbussonnier@gmail.com"), 

40} 

41 

42author = 'The IPython Development Team' 

43 

44author_email = 'ipython-dev@python.org'