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

18 statements  

« prev     ^ index     » next       coverage.py v7.4.4, created at 2024-04-20 06:09 +0000

1# -*- coding: utf-8 -*- 

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

3 

4#----------------------------------------------------------------------------- 

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

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

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

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

9# 

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

11# 

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

13#----------------------------------------------------------------------------- 

14 

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

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

17# version 

18_version_major = 8 

19_version_minor = 12 

20_version_patch = 3 

21_version_extra = ".dev" 

22# _version_extra = "rc1" 

23_version_extra = "" # Uncomment this for full releases 

24 

25# Construct full version string from these. 

26_ver = [_version_major, _version_minor, _version_patch] 

27 

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

29if _version_extra: 

30 __version__ = __version__ + _version_extra 

31 

32version = __version__ # backwards compatibility name 

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

34 

35# Change this when incrementing the kernel protocol version 

36kernel_protocol_version_info = (5, 0) 

37kernel_protocol_version = "%i.%i" % kernel_protocol_version_info 

38 

39license = "BSD-3-Clause" 

40 

41authors = {'Fernando' : ('Fernando Perez','fperez.net@gmail.com'), 

42 'Janko' : ('Janko Hauser','jhauser@zscout.de'), 

43 'Nathan' : ('Nathaniel Gray','n8gray@caltech.edu'), 

44 'Ville' : ('Ville Vainio','vivainio@gmail.com'), 

45 'Brian' : ('Brian E Granger', 'ellisonbg@gmail.com'), 

46 'Min' : ('Min Ragan-Kelley', 'benjaminrk@gmail.com'), 

47 'Thomas' : ('Thomas A. Kluyver', 'takowl@gmail.com'), 

48 'Jorgen' : ('Jorgen Stenarson', 'jorgen.stenarson@bostream.nu'), 

49 'Matthias' : ('Matthias Bussonnier', 'bussonniermatthias@gmail.com'), 

50 } 

51 

52author = 'The IPython Development Team' 

53 

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