Skip to content

Commit

Permalink
Final hatchling workaround fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
jsirois committed Oct 22, 2024
1 parent dc6a570 commit c97e4eb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion testing/build_system.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@


hatchling_only_supports_37_and_greater = pytest.mark.skipif(
sys.version_info[:2] <= (3, 7), reason="Our current build system only works under Python>=3.7"
sys.version_info[:2] < (3, 7), reason="Our current build system only works under Python>=3.7"
)


Expand Down
2 changes: 2 additions & 0 deletions tests/integration/cli/commands/test_lock.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@
make_env,
run_pex_command,
)
from testing.build_system import hatchling_only_supports_37_and_greater
from testing.cli import run_pex3
from testing.resolve import normalize_locked_resolve

Expand Down Expand Up @@ -174,6 +175,7 @@ def create_lock(
)


@hatchling_only_supports_37_and_greater
def test_create_local(
tmpdir, # type: Any
pex_project_dir, # type: str
Expand Down

0 comments on commit c97e4eb

Please sign in to comment.