Uploaded Test files
This commit is contained in:
parent
f584ad9d97
commit
2e81cb7d99
16627 changed files with 2065359 additions and 102444 deletions
16
venv/Lib/site-packages/ipykernel/_version.py
Normal file
16
venv/Lib/site-packages/ipykernel/_version.py
Normal file
|
@ -0,0 +1,16 @@
|
|||
version_info = (5, 3, 4)
|
||||
__version__ = '.'.join(map(str, version_info[:3]))
|
||||
|
||||
# pep440 is annoying, beta/alpha/rc should _not_ have dots or pip/setuptools
|
||||
# confuses which one between the wheel and sdist is the most recent.
|
||||
if len(version_info) == 4:
|
||||
extra = version_info[3]
|
||||
if extra.startswith(('a','b','rc')):
|
||||
__version__ = __version__+extra
|
||||
else:
|
||||
__version__ = __version__+'.'+extra
|
||||
if len(version_info) > 4:
|
||||
raise NotImplementedError
|
||||
|
||||
kernel_protocol_version_info = (5, 3)
|
||||
kernel_protocol_version = '%s.%s' % kernel_protocol_version_info
|
Loading…
Add table
Add a link
Reference in a new issue