mirror of
https://github.com/wassname/jupyter_contrib_nbextensions.git
synced 2026-06-27 16:10:24 +08:00
13 lines
296 B
Python
13 lines
296 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
"""Test the package"""
|
|
|
|
from jupyter_contrib_core.testing_utils import raise_on_bad_version
|
|
|
|
from jupyter_contrib_nbextensions import __version__
|
|
|
|
|
|
def test_current_version():
|
|
"""check that version string complies with pep440"""
|
|
raise_on_bad_version(__version__)
|