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

Bump the python-dependencies group with 4 updates #18

Merged
merged 2 commits into from
Feb 11, 2024
Merged
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
17 changes: 10 additions & 7 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,16 +21,17 @@ bpp = "bpp.cli:app"

[project.optional-dependencies]
dev = [
"pre-commit==3.6.0",
"ruff==0.1.9",
"pre-commit==3.6.1",
"ruff==0.2.1",
"mypy==1.8.0",
]
tests = [
"pytest==7.4.4",
"pytest==8.0.0",
"pytest-randomly==3.15.0",
]
docs = [
"sphinx==7.2.6",
"furo==2023.9.10",
"furo==2024.1.29",
"sphinx-autoapi==3.0.0",
"releases==2.1.1",
]
Expand All @@ -43,13 +44,15 @@ build-backend = "setuptools.build_meta"
preview = true
unsafe-fixes = true
target-version = "py311"
select = ["ALL"]
line-length = 120

[tool.ruff.lint]
select = ["ALL"]
ignore = [
"CPY001", # (Missing copyright notice at top of file) - No license
]

[tool.ruff.extend-per-file-ignores]
[tool.ruff.lint.extend-per-file-ignores]
"docs/*" = [
"INP001", # (File `docs/*.py` is part of an implicit namespace package. Add an `__init__.py`.) - Docs are not modules
]
Expand All @@ -58,7 +61,7 @@ ignore = [
"S101", # (Use of `assert` detected) - Yes, that's the point
]

[tool.ruff.pydocstyle]
[tool.ruff.lint.pydocstyle]
convention = "numpy"

[tool.coverage.run]
Expand Down
2 changes: 1 addition & 1 deletion src/bpp/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
from .interpreter import Interpreter
from .tokens import Token, tokenize

__all__ = ["Interpreter", "Token", "BrainfuckSyntaxError", "tokenize"]
__all__ = ["BrainfuckSyntaxError", "Interpreter", "Token", "tokenize"]
Loading