Skip to content

Commit

Permalink
refactor: examples not any more automatically formatted, because used…
Browse files Browse the repository at this point in the history
… in sphinx documentation
  • Loading branch information
bsrdjan committed Jan 8, 2024
1 parent 00776d6 commit e2d4892
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "pyrfc"
version = "3.3"
version = "3.3.1"
readme = "README.md"
license = { file = "LICENSES/Apache-2.0.txt" }
description = "Python bindings for SAP NetWeaver RFC SDK"
Expand Down
2 changes: 1 addition & 1 deletion src/pyrfc/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import os
from contextlib import suppress

__version__ = importlib.metadata.version("pyrfc")
__version__ = importlib.metadata.version(__name__)
__version_info__ = tuple(__version__.split("."))

if os.name == "nt":
Expand Down
3 changes: 2 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ deps =
pydocstyle
commands =
cython-lint src/pyrfc --max-line-length=180
ruff check --fix src setup.py tests examples --line-length=120
ruff format src setup.py tests --line-length=120
# ruff format examples --line-length=120
pydocstyle src

[testenv:docs]
Expand Down

0 comments on commit e2d4892

Please sign in to comment.