Skip to content
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
1 change: 1 addition & 0 deletions .github/scripts/get_latest_changelog.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@

```
"""

import re

h2 = r"^##\s.*$"
Expand Down
1 change: 0 additions & 1 deletion hatch_version_hook.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
from hatchling.builders.hooks.plugin.interface import BuildHookInterface
from typing import Any, Optional


_logger = logging.Logger(__name__, logging.INFO)
_stdout_handler = logging.StreamHandler(sys.stdout)
_stdout_handler.addFilter(lambda record: record.levelno <= logging.INFO)
Expand Down
3 changes: 2 additions & 1 deletion requirements-testing.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ pytest == 9.1.*; python_version >= "3.10"
pytest-cov == 7.1.*
pytest-timeout == 2.4.*
pytest-xdist == 3.8.*
black == 25.*
black == 25.*; python_version == "3.9"
black == 26.*; python_version >= "3.10"
ruff == 0.15.*
psutil >= 5.9,< 7.3
mypy == 1.19.*; python_version == "3.9"
Expand Down
1 change: 0 additions & 1 deletion scripts/windows_service_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
import pytest
from getpass import getpass


logger = logging.getLogger(__name__)


Expand Down
1 change: 0 additions & 1 deletion src/openjd/sessions/_linux/_capabilities.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@

from .._logging import LOG


# Capability sets
CAP_EFFECTIVE = 0
CAP_PERMITTED = 1
Expand Down
1 change: 0 additions & 1 deletion src/openjd/sessions/_v1/_linux/_capabilities.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@

from .._logging import LOG


# Capability sets
CAP_EFFECTIVE = 0
CAP_PERMITTED = 1
Expand Down
1 change: 1 addition & 0 deletions test/openjd/sessions_v0/test_subprocess.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.

"""Tests for LoggingSubprocess"""

import sys
import tempfile
import time
Expand Down
1 change: 0 additions & 1 deletion test/openjd/sessions_v1/test_pickle.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@

import pytest


# ── Group A: enums ───────────────────────────────────────────────


Expand Down
1 change: 0 additions & 1 deletion test/openjd/sessions_v1/test_session_scenarios.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,6 @@
)
from openjd.sessions._v1 import Session, PathMappingRule, SessionState


SCENARIOS_DIR = Path(__file__).parent / "scenarios"


Expand Down
Loading