Skip to content

Commit

Permalink
chore: make sync working
Browse files Browse the repository at this point in the history
  • Loading branch information
Lancetnik committed Jan 15, 2025
1 parent 6b3e680 commit 2b2cc45
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,8 @@ devdocs = [
"mkdocs-material==9.5.49",
"mkdocs-static-i18n==1.2.3",
"mdx-include==1.4.2",
"mkdocstrings[python]==0.27.0",
"mkdocstrings[python]==0.27.0; python_version >= '3.9'",
"mkdocstrings[python]==0.26.1; python_version == '3.8'",
"mkdocs-literate-nav==0.6.1",
"mkdocs-git-revision-date-localized-plugin==1.3.0",
"mike==2.1.3", # versioning
Expand Down Expand Up @@ -122,8 +123,10 @@ types = [
lint = [
"faststream[types]",
"ruff==0.9.1",
"bandit==1.8.2",
"semgrep==1.102.0",
"bandit==1.8.2; python_version >= '3.9'",
"bandit==1.7.10; python_version == '3.8'",
"semgrep==1.102.0; python_version >= '3.9'",
"semgrep==1.99.0; python_version == '3.8'",
"codespell==2.3.0",
]

Expand Down

0 comments on commit 2b2cc45

Please sign in to comment.