setup.py performs work without a command being specified #2066

Closed
opened 2013-08-28 19:00:48 +00:00 by daira · 9 comments
daira commented 2013-08-28 19:00:48 +00:00
Owner
tahoe@i-a419d13f:~/allmydata-tahoe-1.10.0$ python setup.py 
Not found: tahoe-deps
Not found: ../tahoe-deps

Installed /home/tahoe/allmydata-tahoe-1.10.0/Twisted-11.1.0-py2.7-linux-x86_64.egg
Searching for zope.interface==3.6.0,==3.6.1,==3.6.2,>=3.6.5
Reading <http://pypi.python.org/simple/zope.interface/>
Best match: zope.interface 3.6.1
Downloading <https://tahoe-lafs.org/source/tahoe-lafs/deps/tahoe-lafs-dep-eggs/zope.interface-3.6.1-py2.7-linux-x86_64.egg>
Processing zope.interface-3.6.1-py2.7-linux-x86_64.egg
creating /home/tahoe/allmydata-tahoe-1.10.0/zope.interface-3.6.1-py2.7-linux-x86_64.egg
Extracting zope.interface-3.6.1-py2.7-linux-x86_64.egg to /home/tahoe/allmydata-tahoe-1.10.0

Installed /home/tahoe/allmydata-tahoe-1.10.0/zope.interface-3.6.1-py2.7-linux-x86_64.egg
usage: setup.py global_opts cmd1 cmd1_opts [[cmd2_opts]cmd2 ...]
   or: setup.py --help [cmd2 ...]cmd1
   or: setup.py --help-commands
   or: setup.py cmd --help

error: no commands supplied
tahoe@i-a419d13f:~/allmydata-tahoe-1.10.0$
``` tahoe@i-a419d13f:~/allmydata-tahoe-1.10.0$ python setup.py Not found: tahoe-deps Not found: ../tahoe-deps Installed /home/tahoe/allmydata-tahoe-1.10.0/Twisted-11.1.0-py2.7-linux-x86_64.egg Searching for zope.interface==3.6.0,==3.6.1,==3.6.2,>=3.6.5 Reading <http://pypi.python.org/simple/zope.interface/> Best match: zope.interface 3.6.1 Downloading <https://tahoe-lafs.org/source/tahoe-lafs/deps/tahoe-lafs-dep-eggs/zope.interface-3.6.1-py2.7-linux-x86_64.egg> Processing zope.interface-3.6.1-py2.7-linux-x86_64.egg creating /home/tahoe/allmydata-tahoe-1.10.0/zope.interface-3.6.1-py2.7-linux-x86_64.egg Extracting zope.interface-3.6.1-py2.7-linux-x86_64.egg to /home/tahoe/allmydata-tahoe-1.10.0 Installed /home/tahoe/allmydata-tahoe-1.10.0/zope.interface-3.6.1-py2.7-linux-x86_64.egg usage: setup.py global_opts cmd1 cmd1_opts [[cmd2_opts]cmd2 ...] or: setup.py --help [cmd2 ...]cmd1 or: setup.py --help-commands or: setup.py cmd --help error: no commands supplied tahoe@i-a419d13f:~/allmydata-tahoe-1.10.0$ ```
tahoe-lafs added the
packaging
normal
defect
1.10.0
labels 2013-08-28 19:00:48 +00:00
tahoe-lafs added this to the undecided milestone 2013-08-28 19:00:48 +00:00

The reason it does this work is to work around the Nevow bug documented in #2032. The existence of #2032 shows that this work-around does not fix all packaging use cases.

Removing Nevow as a dependency (#1963) would address both this ticket and #2032, and simplify setup.py complexity, and make more installation use cases work.

The reason it does this work is to work around the Nevow bug documented in #2032. The existence of #2032 shows that this work-around does not fix all packaging use cases. Removing `Nevow` as a dependency (#1963) would address both this ticket and #2032, and simplify `setup.py` complexity, and make more installation use cases work.
daira commented 2013-08-29 00:31:33 +00:00
Author
Owner

To be more precise it was to work around #440 and #455 (which were due to the same underlying problem with Nevow importing its dependencies at setup time). Specifically it's caused by this:

setup_requires += [req for req in install_requires if req.startswith('Twisted') or req.startswith('zope.interface')]

So setuptools/zetuptoolz is kinda sort-of behaving correctly (for once) in building zope.interface before attempting the rest of the setup, because that's what we asked it to do. Therefore I think this should probably be wontfixed.

While I agree that removing Nevow as a dependency would be extremely helpful, I don't think it should be a blocker for anything else. In the short term we can unblock things like pip installation etc. just by getting someone to release another version of Nevow (even if it did not have any source changes!)

To be more precise it was to work around #440 and #455 (which were due to the same underlying problem with Nevow importing its dependencies at setup time). Specifically it's caused by this: ``` setup_requires += [req for req in install_requires if req.startswith('Twisted') or req.startswith('zope.interface')] ``` So setuptools/zetuptoolz is kinda sort-of behaving correctly (for once) in building zope.interface before attempting the rest of the setup, because that's what we asked it to do. Therefore I think this should probably be wontfixed. While I agree that removing Nevow as a dependency would be extremely helpful, I don't think it should be a blocker for anything else. In the short term we can unblock things like pip installation etc. just by getting someone to release another version of Nevow (even if it did not have any source changes!)
tahoe-lafs changed title from setup.py does work without a command being specified to setup.py performs work without a command being specified 2013-09-18 01:49:07 +00:00

Removing the setup_requires would also help with comment:93126.

Removing the `setup_requires` would also help with [comment:93126](/tahoe-lafs/trac-2024-07-25/issues/2055#issuecomment-93126).

While experimenting with #2255 and chatting about packaging at the LAFS summit, we began searching for setup_requires cases, which present a difficult wart when attempting to implement a peep based installation.

We immediately found the line in question Daira's comment 3 above#comment:93320 and I realized that the line in question may no longer be necessary if we upgrade the Nevow dependency, which may be feasible - see: /tahoe-lafs/trac-2024-07-25/issues/7062#comment:18

While experimenting with #2255 and chatting about packaging at the LAFS summit, we began searching for `setup_requires` cases, which present a difficult wart when attempting to implement a peep based installation. We immediately found the line in question [Daira's comment 3 above](/tahoe-lafs/trac-2024-07-25/issues/7096)#[comment:93320](/tahoe-lafs/trac-2024-07-25/issues/2066#issuecomment-93320) and I realized that the line in question may no longer be necessary *if* we upgrade the Nevow dependency, which may be feasible - see: [/tahoe-lafs/trac-2024-07-25/issues/7062](/tahoe-lafs/trac-2024-07-25/issues/7062)#comment:18
daira commented 2015-01-15 00:43:40 +00:00
Author
Owner

Despite the release of Nevow 0.11.1, the "line in question" (source:setup.py#L131) still exists. This is because, very annoyingly, Nevow 0.11.1 declared a dependency on Twisted >= 13.0.0 (#2249), which we can't use on Windows because of #2028.

This situation is likely to persist until we are able to depend on a version of Twisted that fixes https://twistedmatrix.com/trac/ticket/6032 (or possibly https://twistedmatrix.com/trac/ticket/7477, but that would introduce a whole 'nother set of problems unless cffi's build process is also improved).

We could use the hack in source:setup.py#L131 only on Windows. I don't like this solution because it increases the divergence in build behaviour between Windows and other platforms even further.

Despite the release of Nevow 0.11.1, the "line in question" (source:setup.py#L131) still exists. This is because, very annoyingly, Nevow 0.11.1 declared a dependency on Twisted >= 13.0.0 (#2249), which we can't use on Windows because of #2028. This situation is likely to persist until we are able to depend on a version of Twisted that fixes <https://twistedmatrix.com/trac/ticket/6032> (or possibly <https://twistedmatrix.com/trac/ticket/7477>, but that would introduce a whole 'nother set of problems unless cffi's build process is also improved). We *could* use the hack in source:setup.py#L131 only on Windows. I don't like this solution because it increases the divergence in build behaviour between Windows and other platforms even further.
tahoe-lafs modified the milestone from undecided to 1.11.0 2015-04-12 22:14:20 +00:00

I think a good next-step on this is #2473 (stop using setup_requires).

I think a good next-step on this is #2473 (stop using `setup_requires`).
daira commented 2015-07-21 20:01:34 +00:00
Author
Owner

Replying to daira:

We could use the hack in source:setup.py#L131 only on Windows.

That is [in fact what we do now]changeset:07aa5e76b5faea91f55fc5f566e8b766c7685c51/trunk (since 1.10.1).

I don't like this solution because it increases the divergence in build behaviour between Windows and other platforms even further.

I still don't like it. I think we should use the pypiwin32 wheel instead, but that is blocked on switching to pip (#2077) or newish setuptools (#2044), because wheels cannot be built/installed by zetuptoolz.

Replying to [daira](/tahoe-lafs/trac-2024-07-25/issues/2066#issuecomment-93324): > We *could* use the hack in source:setup.py#L131 only on Windows. That is [in fact what we do now]changeset:07aa5e76b5faea91f55fc5f566e8b766c7685c51/trunk (since 1.10.1). > I don't like this solution because it increases the divergence in build behaviour between Windows and other platforms even further. I still don't like it. I think we should use the pypiwin32 wheel instead, but that is blocked on switching to pip (#2077) or newish setuptools (#2044), because wheels cannot be built/installed by zetuptoolz.

Milestone renamed

Milestone renamed
warner modified the milestone from 1.11.0 to 1.12.0 2016-03-22 05:02:52 +00:00

We no longer use setup_requires=, so I think we can close this one.

We no longer use `setup_requires=`, so I think we can close this one.
warner added the
fixed
label 2016-03-26 23:06:32 +00:00
warner modified the milestone from 1.12.0 to 1.11.0 2016-03-26 23:06:32 +00:00
Sign in to join this conversation.
No Milestone
No Assignees
4 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Reference: tahoe-lafs/trac-2024-07-25#2066
No description provided.