Giter VIP home page Giter VIP logo

Comments (5)

marcelotduarte avatar marcelotduarte commented on August 15, 2024 1

Can you test the PR?

from cx_freeze.

marcelotduarte avatar marcelotduarte commented on August 15, 2024

I know that some Linux OS, like Gentoo, Arch does not pack setuptools with 3rd party tools (extern) #1863
The correct in this SO is xfail the test.
Can you show me the traceback?

from cx_freeze.

brianrobt avatar brianrobt commented on August 15, 2024

I know that some Linux OS, like Gentoo, Arch does not pack setuptools with 3rd party tools (extern)

Thanks for the info. I'll dig into that more.

Here is the traceback:

========================================================================================================================== FAILURES ===========================================================================================================================
______________________________________________________________________________________________________________________ test_import_tomli ______________________________________________________________________________________________________________________

name = 'setuptools.extern.tomli'

    def resolve(name: str) -> object:
        # Simplified from zope.dottedname.
        parts = name.split(".")

        used = parts.pop(0)
        found: object = __import__(used)
        for part in parts:
            used += "." + part
            try:
                found = getattr(found, part)
            except AttributeError:
                pass
            else:
                continue
            # We use explicit un-nesting of the handling block in order
            # to avoid nested exceptions.
            try:
>               __import__(used)
E               ModuleNotFoundError: No module named 'setuptools.extern'

/usr/lib/python3.12/site-packages/_pytest/monkeypatch.py:79: ModuleNotFoundError

The above exception was the direct cause of the following exception:

monkeypatch = <_pytest.monkeypatch.MonkeyPatch object at 0x7f51cbb0da60>

    def test_import_tomli(monkeypatch) -> None:
        """Test using tomli as a last resort."""
        if sys.version_info >= (3, 11):
            monkeypatch.delattr("tomllib.loads")
        with contextlib.suppress(AttributeError, ModuleNotFoundError):
>           monkeypatch.delattr("setuptools.extern.tomli.loads")

tests/test_cli.py:97:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/usr/lib/python3.12/site-packages/_pytest/monkeypatch.py:104: in derive_importpath
    target = resolve(module)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

name = 'setuptools.extern.tomli'

    def resolve(name: str) -> object:
        # Simplified from zope.dottedname.
        parts = name.split(".")

        used = parts.pop(0)
        found: object = __import__(used)
        for part in parts:
            used += "." + part
            try:
                found = getattr(found, part)
            except AttributeError:
                pass
            else:
                continue
            # We use explicit un-nesting of the handling block in order
            # to avoid nested exceptions.
            try:
                __import__(used)
            except ImportError as ex:
                expected = str(ex).split()[-1]
                if expected == used:
                    raise
                else:
>                   raise ImportError(f"import error in {used}: {ex}") from ex
E                   ImportError: import error in setuptools.extern: No module named 'setuptools.extern'

/usr/lib/python3.12/site-packages/_pytest/monkeypatch.py:85: ImportError

from cx_freeze.

brianrobt avatar brianrobt commented on August 15, 2024

That did the trick: tests/test_cli.py::test_import_tomli SKIPPED (Python >= 3.11)

Thank you, @marcelotduarte! I'll keep this issue open until the change is merged.

from cx_freeze.

marcelotduarte avatar marcelotduarte commented on August 15, 2024

Release 7.2.0 is out!
Documentation

from cx_freeze.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.