Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Drop pep440 dependency #408

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ test = [
"testpath",
"pytest",
"pre-commit",
"pep440"
"packaging"
]

[project.scripts]
Expand Down
4 changes: 2 additions & 2 deletions tests/test_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
from typing import Any

from jsonschema import ValidationError
from pep440 import is_canonical
from packaging import version

from nbformat import __version__ as nbf_version
from nbformat import current_nbformat, read, write, writes
Expand All @@ -22,7 +22,7 @@


def test_canonical_version():
assert is_canonical(nbf_version)
assert str(version.parse(nbf_version)) == nbf_version


class TestAPI(TestsBase):
Expand Down