From 4e162a0a541ef4412f7b7722aefcc188f9bb8f17 Mon Sep 17 00:00:00 2001 From: Jason Madden Date: Sat, 9 Nov 2024 05:25:52 -0600 Subject: [PATCH] the pythonpath workaround should not be needed anymore. --- .github/workflows/tests.yml | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 1e906b7..3765040 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -5,19 +5,6 @@ on: [push, pull_request] env: PYTHONHASHSEED: 1042466059 ZOPE_INTERFACE_STRICT_IRO: 1 - # To use editable installs of our nti namespace package combined with - # non-editable installs of other packages, you must set this. - # This is because setuptools has become broken thanks to PEP660. - # Adding the pkg_util line to __init__.py is a partial workaround, - # When it is loaded first on the path. - # - # With setuptools 75.3.0, nothing else worked for all the tools: not - # a strict or compat editable_mode, not an empty __init__.py, - # - # See https://github.com/pypa/pip/issues/11587 - # And https://github.com/pypa/setuptools/issues/4039 - PYTHONPATH: src - jobs: