Skip to content

Commit

Permalink
Version 3.27.0rc0
Browse files Browse the repository at this point in the history
  • Loading branch information
mborsetti committed Oct 29, 2024
1 parent 90c23f4 commit 756da62
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/ci-cd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ jobs:
python-version: ['3.13', '3.12', '3.11', '3.10']
# python-version: ['3.12']
os: [ubuntu-latest]
# 29-oct-24 lxml does not build for free-threaded (requires libxml2 and libxslt development packages
# include:
# Free-threaded from https://github.com/actions/setup-python/issues/771
# - { os: ubuntu-latest, python-version: '3.13-dev', disable-gil: true }
Expand Down
2 changes: 1 addition & 1 deletion webchanges/handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ def debugger_attached() -> bool:
:returns: True if a debugger is attached, False otherwise.
"""
return sys.gettrace() is not None
return sys.breakpointhook.__module__ != 'sys'

def added_data(self) -> dict[str, bool | str | Exception | float | None]:
"""Returns a dict with the data added in the processing of the job."""
Expand Down

0 comments on commit 756da62

Please sign in to comment.