Skip to content

Commit

Permalink
version 0.8.9
Browse files Browse the repository at this point in the history
  • Loading branch information
cansarigol authored Sep 17, 2024
1 parent 0779c1a commit 45a674c
Show file tree
Hide file tree
Showing 4 changed files with 49 additions and 33 deletions.
2 changes: 1 addition & 1 deletion pdbr/utils.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import os
import atexit
import configparser
import os
from pathlib import Path

from pdbr._pdbr import rich_pdb_klass
Expand Down
66 changes: 40 additions & 26 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 7 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "pdbr"
version = "0.8.8"
version = "0.8.9"
description = "Pdb with Rich library."
authors = ["Can Sarigol <[email protected]>"]
packages = [
Expand Down Expand Up @@ -35,8 +35,8 @@ pdbr = 'pdbr.cli:shell'
pdbr_telnet = 'pdbr.cli:telnet'

[tool.poetry.group.dev.dependencies]
ruff = "^0.0.261"
nox = "^2022.11.21"
ruff = "^0.6.5"
nox = "^2024.4.15"

[build-system]
requires = ["poetry>=1.0.0", "setuptools"]
Expand All @@ -51,12 +51,15 @@ verbose = false

[project]
name = "pdbr"
version = "0.8.8"
version = "0.8.9"

[tool.setuptools]
py-modules = []

[tool.ruff]
line-length = 88

[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
Expand All @@ -67,4 +70,3 @@ select = [
"PIE", # flake8-pie
"ERA", # eradicate
]
line-length = 88
2 changes: 1 addition & 1 deletion scripts/lint
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@

export SOURCE_FILES="pdbr tests noxfile.py"

ruff $SOURCE_FILES --fix
ruff check $SOURCE_FILES --fix
black $SOURCE_FILES

0 comments on commit 45a674c

Please sign in to comment.