Skip to content

Commit

Permalink
Merge pull request #106 from lyz-code/fix/update-ci
Browse files Browse the repository at this point in the history
chore: update requirements
  • Loading branch information
lyz-code authored Oct 23, 2023
2 parents 9429af6 + f457298 commit 1b439f9
Show file tree
Hide file tree
Showing 8 changed files with 286 additions and 258 deletions.
530 changes: 279 additions & 251 deletions pdm.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/mkdocs_newsletter/entrypoints/mkdocs_plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import os
from typing import Optional

from git import Repo # type: ignore
from git import Repo
from mkdocs.config.defaults import MkDocsConfig
from mkdocs.plugins import BasePlugin

Expand Down
2 changes: 1 addition & 1 deletion src/mkdocs_newsletter/services/newsletter.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
from dateutil import tz
from dateutil.relativedelta import relativedelta
from deepdiff import grep
from git import Repo # type: ignore
from git import Repo
from jinja2 import Environment, PackageLoader, select_autoescape
from mkdocs.config.defaults import MkDocsConfig

Expand Down
2 changes: 1 addition & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

import pytest
from dateutil import tz
from git import Actor, Repo # type: ignore
from git import Actor, Repo
from mkdocs.config.base import load_config
from mkdocs.config.defaults import MkDocsConfig

Expand Down
2 changes: 1 addition & 1 deletion tests/e2e/test_plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import feedparser
import pytest
from dateutil import parser, tz
from git import Repo # type: ignore
from git import Repo
from mkdocs.commands import build
from mkdocs.config.defaults import MkDocsConfig

Expand Down
2 changes: 1 addition & 1 deletion tests/unit/services/test_last_newsletters.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

import pytest
from dateutil import tz
from git import Repo # type: ignore
from git import Repo
from mkdocs.config.defaults import MkDocsConfig

from mkdocs_newsletter import Change, digital_garden_changes, last_newsletter_changes
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/services/test_nav.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
list of Pages and SectionPages need to be stored in the `pages` attribute.
"""

from git import Repo # type: ignore
from git import Repo
from mkdocs.config.defaults import MkDocsConfig

from mkdocs_newsletter.services.nav import build_nav
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/services/test_semantic_changes.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

import pytest
from dateutil import tz
from git import Actor, Repo # type: ignore
from git import Actor, Repo

from mkdocs_newsletter import Change, semantic_changes

Expand Down

0 comments on commit 1b439f9

Please sign in to comment.