depend on Twisted[windows]
(or something) to get pypiwin32 installed
#2392
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
4 Participants
Notifications
Due Date
No due date set.
Reference: tahoe-lafs/trac-2024-07-25#2392
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?
(https://pypi.python.org/pypi/pypiwin32)
This is a fork (actually a very small fork, a.k.a. a toothpick) of pywin32, produced by Glyph in order to fix the problem of pywin32 not being pip-installable:
http://sourceforge.net/p/pywin32/bugs/669/
Depending on this would allow us to use newer versions of Twisted, which would remove the problem with comment:93324. I think this would allow us to close #2066.
(note: as of March-2016, we do have a platform-conditional
install_requires=
dependency onpypiwin32
, and this ticket is about finding a better way to express that dependency)Can zetuptoolz use wheels? I think it is forked from a version of setuptools that predates wheels.
glyph: could you build a .egg for Windows of pypiwin32?
I don't think so. My initial attempts produce errors, although I need to do some diagnosis as to why (it may be a local development environment setup problem).
I'm also reluctant to upload them. Eggs require
easy_install
, andeasy_install
doesn't verify SSL certificates, so this would be facilitating the arbitrary execution of unverified code I've been trying so hard to avoid in Python-packaging-land. I take it there are still some difficulties dealing with wheels in tahoe? I will keep trying, and I'll upload them if there's really no other way to do this in Tahoe.Ideally, you would just add a dependency on
twistedwindows_platform
. But that will add a dependency on pyOpenSSL - are you still trying to avoid that? I wonder if there's some other way to break down our extras to give you the matrix Tahoe wants.twistedwindows_SOMETHING
is how I'd prefer to do this. We're no longer trying to avoid pyopenssl, in fact because of a setuptools bug/lacking-feature, I think we needtwistedtls,windows_SOMETHING
. (Foolscap requirestwistedtls
, and Twisted requiresfoolscap
, but since setuptools will see Tahoe'stwisted
first, it will installtwisted
(without TLS), and then when it gets to foolscap later, it ignores thetls
, and we miss out onservice-identity
, and things break).At present (Twisted-16.0.0),
twistedwindows_platform
would also pull in the following_PLATFORM_INDEPENDENT
features:tls
: that okconch
: that's ok toosoap
: um, I'd like to avoid it: 760KB of wheels,wstools
,defusedxml
, anddocutils
serial
: probably small, but completely unrelated to TahoeAlso, because I suspect the same setuptools bug would cause problems if we Tahoe had two separate Twisted dependencies with different extras (e.g.
Twistedtls, Twistedwindows_platform
), the conditional logic in oursetup.py
/_auto_deps.py
would need to be a bit grotty. So if it doesn't sound like Twisted is likely to change its windows dependency any time soon, I think we can continue to just conditionally depend onpypiwin32
whensetup.py
is run on windows.BTW, we're all about wheels now. The existing
pypiwin32
wheels should suit us just fine.If you were going to re-slice the Twisted extras, maybe I'd suggest just a
Twistedwindows
extra, that only pulls in what's necessary to run the reactor on windows (pypiwin32
). In fact I'm not entirely sure what thewindows_platform
andosx_platform
extras are for. E.g. on OS-X it would seem appropriate for us for depend onTwistedosx
, just in case there's some special magic that's necessary, but the currentTwistedosx_platform
includespyobjc
, which is gigantic, not available as wheels, takes something like an hour to compile, and not something we need (yet.. if/when we manage a non-web-based GUI, it may become necessary).Changing the title of this ticket, since we actually added the dependency on
pypiwin32
a few weeks ago (as part of switching to pip, in #1582).add dependency on pypiwin32 to satisfy Twisted on Windowsto depend on `Twisted[windows]` (or something) to get pypiwin32 installedIt seems like this should really be in a ticket on Twisted :).
This is actually necessary for doing anything that talks to OS X platform APIs, even those that have nothing to do with the GUI, like CoreLocation, and CoreWLAN, and SCNetworkReachability.
However, Twisted's dependency on all of pyobjc is somewhat mistaken; we could get away with just
pyobjc-core
andpyobjc-framework-Cocoa
which should be substantially faster to install.In the meanwhile, for developers that do a lot with tahoe, if they're hitting this problem now, one way to jump-start your local wheel cache is to make a temporary virtualenv, and then do:
as two separate commands; compiling pyobjc's frameworks is much, much faster if you already have an importable
pyobjc-core
in your environment. Once you've done this once,pip install pyobjc
will be plenty fast since you'll have local wheels.Dropping the
design-review-needed
keyword as there is no discernible design here for review.The limitations of setuptools, pip, "extras", etc make it unlikely anything significant is going to change on this front any time soon.
The one thing that should likely be changed is that "pywin32" now ships wheels and "pypiwin32" is no longer relevant (and also increasingly out of date, one supposes - although if it works "out of date" might be a good thing rather than a bad thing). Also, Twisted now depends on "pywin32" on Windows so Tahoe-LAFS currently depends on "pypiwin32" *and" pywin32" on Windows. Oops. That's easy enough to fix, though (at least until Twisted changes its "windows_platform" extra again; sigh, duplication).
(https://github.com/tahoe-lafs/tahoe-lafs/pull/685)
In 5bd84895/trunk:
🎉❗️