Skip to content

Commit

Permalink
Drop pep440 dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
LecrisUT committed Jan 15, 2025
1 parent ba2c6f5 commit aad470e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
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

0 comments on commit aad470e

Please sign in to comment.