Nevow doesn't declare its dependency on Twisted in a machine-readable way. #440
Labels
No Label
0.2.0
0.3.0
0.4.0
0.5.0
0.5.1
0.6.0
0.6.1
0.7.0
0.8.0
0.9.0
1.0.0
1.1.0
1.10.0
1.10.1
1.10.2
1.10a2
1.11.0
1.12.0
1.12.1
1.13.0
1.14.0
1.15.0
1.15.1
1.2.0
1.3.0
1.4.1
1.5.0
1.6.0
1.6.1
1.7.0
1.7.1
1.7β
1.8.0
1.8.1
1.8.2
1.8.3
1.8β
1.9.0
1.9.0-s3branch
1.9.0a1
1.9.0a2
1.9.0b1
1.9.1
1.9.2
1.9.2a1
LeastAuthority.com automation
blocker
cannot reproduce
cloud-branch
code
code-dirnodes
code-encoding
code-frontend
code-frontend-cli
code-frontend-ftp-sftp
code-frontend-magic-folder
code-frontend-web
code-mutable
code-network
code-nodeadmin
code-peerselection
code-storage
contrib
critical
defect
dev-infrastructure
documentation
duplicate
enhancement
fixed
invalid
major
minor
n/a
normal
operational
packaging
somebody else's problem
supercritical
task
trivial
unknown
was already fixed
website
wontfix
worksforme
No Milestone
No Assignees
2 Participants
Notifications
Due Date
No due date set.
Reference: tahoe-lafs/trac-2024-07-25#440
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
So Adam Langley's problem building Tahoe on Ubuntu turned out to be completely reproducible. Any time you run
make
in a Tahoe source tree on a system where neither Twisted nor Nevow is installed,setuptools
will first install Twisted into a directory namedTwisted-$VERSIONNUMBER.egg
in the current working directory, because our source:setup.py told setuptools (in source:_auto_deps.py) that we need to have Twisted installed at build time.We told it that for two reasons: 1. We require twisted to run tests, which is a build-time activity, and 2. We were attempting to work-around the fact that Nevow doesn't declare its dependency on Twisted in a machine-readable way, so that setuptools doesn't know whether to install Twisted first or Nevow first, and if it picks Nevow then the Nevow installation fails at install time when it can't import twisted modules.
However, it turns out that on at least Ubuntu Hardy (Adam's machine) and on my Macbook Pro (Mac OS 10.4), having Twisted listed as
setup_requires
and having Nevow being listed asinstall_requires
leads to this bizarre error message which takes the name of PIL in vain:Here is a minimal Python project that you can use to test this yourself. Simply put the following two lines into a file named
setup.py
:And then execute
python ./setup.py install
. If your platform is like Adam's and mine, then you'll get this bizarre traceback that takes the name of PIL in vain.Here is another minimal project's setup.py file:
If you try to install this project, you will get a nice
ImportError
from Nevow attempting to import twisted while it (Nevow) is being installed.Now, one way that this could all be made to work is if the Nevow
setup.py
declared that it required Twisted. Twisted itself declares that it requireszope.interface
, like this:http://twistedmatrix.com/trac/browser/trunk/setup.py?rev=23010#L75
The Nevow (and Twisted) maintainers have an admirable policy of not applying patches to code that isn't automatically tested. Therefore in order to get this changed in Nevow's
setup.py
it is first necessary to have automated testing of the process of installing Nevow. That is the topic ofhttp://divmod.org/trac/ticket/2630 # installation of Nevow doesn't have automated tests
which I intend to help dash with as much as I can as soon as possible.
Okay, there is now an automated test of Nevow installation using setuptools (http://divmod.org/trac/ticket/2630 # installation of Nevow doesn't have automated tests ), so hopefully this opens the way for improvements to the setuptools build/packaging/metadata...
Hey zooko, since http://bugs.python.org/setuptools/issue20 has been resolved, should this be closed as well? It seems like this was caused by that problem as well as #455.
Yes, the fix in http://bugs.python.org/setuptools/issue20 does make this problem stop happening for Tahoe. That's because setuptools gets lucky and accidentally installs Twisted before installing Nevow. So while I still intend to get http://divmod.org/trac/ticket/2629 (Nevow doesn't declare its dependency on Twisted in a machine-parseable way) fixes, we can in the meantime close this ticket as the issue is no longer negatively effecting Tahoe. In other words, the problem Tahoe had was really caused by #455 (setuptools sandbox isn't tight enough to hold Twisted's sand in so that it doesn't get in Nevow's eyes) and not by Nevow not declaring its dependency on Twisted in a machine-readable way. So I'm going to close this ticket as "Somebody Else's Problem".
This was wontfixed for tahoe-1.3.0.