[Twisted-Python] RC's of Win32 installers for 2.0.0
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 These are to be considered "release candidates". Testing is required to determine if the installers are good enough to be considered final. So please try them and report problems. :-) This is based on the 2.0.0 final release of Twisted, so the RC designation only applies to the installers themselves. Now available at http://twisted.sourceforge.net/Twisted_NoDocs-2.0.0.win32(installer-rc1)-py2... and http://twisted.sourceforge.net/Twisted_NoDocs-2.0.0.win32(installer-rc1)-py2... -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (MingW32) Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org iD8DBQFCSuFd3A5SrXAiHQcRAlHDAJ0bPKkefqKCzCYoj0M1zmNvGLFfdwCgiz9u q22Vflhb70RV4xy/iKVUCps= =Y2A8 -----END PGP SIGNATURE-----
I just tried the python 2.4 installer and everything seemed to work fine - am running trial now to make sure. One question I had, you are including the .pyc files it looks like. I had always thought that wasn't a good thing to do - just curious. During the un-install it seems that the site-packages\twisted\test directory remained - I'm going to test on a completely clean setup later to verify that it wasn't something I had left behind. thanks, --- Bear http://code-bear.com Open Source Applications Foundation (OSAF) http://www.osafoundation.org PGP Fingerprint = 9996 719F 973D B11B E111 D770 9331 E822 40B3 CD29 On Mar 30, 2005, at 12:26 PM, Cory Dodt wrote:
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1
These are to be considered "release candidates". Testing is required to determine if the installers are good enough to be considered final. So please try them and report problems. :-)
This is based on the 2.0.0 final release of Twisted, so the RC designation only applies to the installers themselves.
Now available at http://twisted.sourceforge.net/Twisted_NoDocs-2.0.0.win32(installer- rc1)-py2.3.exe and http://twisted.sourceforge.net/Twisted_NoDocs-2.0.0.win32(installer- rc1)-py2.4.exe
-----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (MingW32) Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org
iD8DBQFCSuFd3A5SrXAiHQcRAlHDAJ0bPKkefqKCzCYoj0M1zmNvGLFfdwCgiz9u q22Vflhb70RV4xy/iKVUCps= =Y2A8 -----END PGP SIGNATURE-----
_______________________________________________ Twisted-Python mailing list Twisted-Python@twistedmatrix.com http://twistedmatrix.com/cgi-bin/mailman/listinfo/twisted-python
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 There's nothing wrong with including the .pyc files per se, except they increase the footprint a fair amount. pyc is cross-platform, cross-machine, etc. The reason I tried including them is because it makes the install go faster (no .pyc compile step). If a significant number of people want a smaller installer, I'll take them out. Thanks for the report, glad to hear everything's working for you. C Mike Taylor wrote: | I just tried the python 2.4 installer and everything seemed to work | fine - am running trial now to make sure. | | One question I had, you are including the .pyc files it looks like. I | had always thought that wasn't a good thing to do - just curious. | | During the un-install it seems that the site-packages\twisted\test | directory remained - I'm going to test on a completely clean setup | later to verify that it wasn't something I had left behind. | | thanks, | | --- | Bear | http://code-bear.com | | Open Source Applications Foundation (OSAF) | http://www.osafoundation.org | | PGP Fingerprint = 9996 719F 973D B11B E111 D770 9331 E822 40B3 CD29 | | | On Mar 30, 2005, at 12:26 PM, Cory Dodt wrote: | | These are to be considered "release candidates". Testing is required to | determine if the installers are good enough to be considered final. | So please | try them and report problems. :-) | | This is based on the 2.0.0 final release of Twisted, so the RC | designation | only applies to the installers themselves. | | Now available at | http://twisted.sourceforge.net/Twisted_NoDocs-2.0.0.win32(installer- | rc1)-py2.3.exe | and | http://twisted.sourceforge.net/Twisted_NoDocs-2.0.0.win32(installer- | rc1)-py2.4.exe | |> _______________________________________________ Twisted-Python mailing list Twisted-Python@twistedmatrix.com http://twistedmatrix.com/cgi-bin/mailman/listinfo/twisted-python |> | ------------------------------------------------------------------------ | _______________________________________________ | Twisted-Python mailing list | Twisted-Python@twistedmatrix.com | http://twistedmatrix.com/cgi-bin/mailman/listinfo/twisted-python -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (MingW32) Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org iD8DBQFCSxkq3A5SrXAiHQcRAhIbAKCQJWkvaDQuMnfyMiNAhl+ByQYemQCeJI9u ruuYS84MZGBelpHpl6nJrKY= =Cc3M -----END PGP SIGNATURE-----
On Wed, 30 Mar 2005 13:24:58 -0800, Cory Dodt <corydodt@twistedmatrix.com> wrote:
There's nothing wrong with including the .pyc files per se, except they increase the footprint a fair amount. pyc is cross-platform, cross-machine, etc. The reason I tried including them is because it makes the install go faster (no .pyc compile step). If a significant number of people want a smaller installer, I'll take them out.
Thanks for the report, glad to hear everything's working for you.
They also break tracebacks, because PYCs refer to locations of associated PY files, which is how the traceback renderers look up lines of code to display in tracebacks.
On 2005.03.31 10:38:30 +0000, Christopher Armstrong wrote:
On Wed, 30 Mar 2005 13:24:58 -0800, Cory Dodt <corydodt@twistedmatrix.com> wrote:
There's nothing wrong with including the .pyc files per se, except they increase the footprint a fair amount. pyc is cross-platform, cross-machine, etc. The reason I tried including them is because it makes the install go faster (no .pyc compile step). If a significant number of people want a smaller installer, I'll take them out.
Thanks for the report, glad to hear everything's working for you.
They also break tracebacks, because PYCs refer to locations of associated PY files, which is how the traceback renderers look up lines of code to display in tracebacks.
They also break across Python versions. $ python2.4 pysol_23.pyc RuntimeError: Bad magic number in .pyc file -- David Ripton dripton@ripton.net
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 RC2's are out. No pyc, lots of replacing SVN-Trunk with 2.0.0. Get them while they're hot at http://twisted.sourceforge.net/Twisted_NoDocs-2.0.0.win32%28installer-rc1%29... http://twisted.sourceforge.net/Twisted_NoDocs-2.0.0.win32%28installer-rc1%29... C Cory Dodt wrote: | There's nothing wrong with including the .pyc files per se, except they | increase the footprint a fair amount. pyc is cross-platform, | cross-machine, | etc. The reason I tried including them is because it makes the install go | faster (no .pyc compile step). If a significant number of people want a | smaller installer, I'll take them out. | | Thanks for the report, glad to hear everything's working for you. | | C | | | | Mike Taylor wrote: | | I just tried the python 2.4 installer and everything seemed to work | | fine - am running trial now to make sure. | | | | One question I had, you are including the .pyc files it looks like. I | | had always thought that wasn't a good thing to do - just curious. | | | | During the un-install it seems that the site-packages\twisted\test | | directory remained - I'm going to test on a completely clean setup | | later to verify that it wasn't something I had left behind. | | | | thanks, | | | | --- | | Bear | | http://code-bear.com | | | | Open Source Applications Foundation (OSAF) | | http://www.osafoundation.org | | | | PGP Fingerprint = 9996 719F 973D B11B E111 D770 9331 E822 40B3 CD29 | | | | | | On Mar 30, 2005, at 12:26 PM, Cory Dodt wrote: | | | | These are to be considered "release candidates". Testing is required to | | determine if the installers are good enough to be considered final. | | So please | | try them and report problems. :-) | | | | This is based on the 2.0.0 final release of Twisted, so the RC | | designation | | only applies to the installers themselves. | | | | Now available at | | http://twisted.sourceforge.net/Twisted_NoDocs-2.0.0.win32(installer- | | rc1)-py2.3.exe | | and | | http://twisted.sourceforge.net/Twisted_NoDocs-2.0.0.win32(installer- | | rc1)-py2.4.exe | | | |> -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (MingW32) Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org iD8DBQFCTCoo3A5SrXAiHQcRAiN2AJkB1F5vwysDTEkty3AkDJF34za8WACfRu3z P7pA+/zTkSs6xM0Ogp6f0U8= =XSz+ -----END PGP SIGNATURE-----
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Urgh, here's the correct URLs: http://twisted.sourceforge.net/Twisted_NoDocs-2.0.0.win32%28installer-rc2%29... http://twisted.sourceforge.net/Twisted_NoDocs-2.0.0.win32%28installer-rc2%29... C Cory Dodt wrote: | RC2's are out. No pyc, lots of replacing SVN-Trunk with 2.0.0. | | Get them while they're hot at | http://twisted.sourceforge.net/Twisted_NoDocs-2.0.0.win32%28installer-rc1%29... | | http://twisted.sourceforge.net/Twisted_NoDocs-2.0.0.win32%28installer-rc1%29... | | | C | | | | Cory Dodt wrote: | | There's nothing wrong with including the .pyc files per se, except they | | increase the footprint a fair amount. pyc is cross-platform, | | cross-machine, | | etc. The reason I tried including them is because it makes the | install go | | faster (no .pyc compile step). If a significant number of people want a | | smaller installer, I'll take them out. | | | | Thanks for the report, glad to hear everything's working for you. | | | | C | | | | | | | | Mike Taylor wrote: | | | I just tried the python 2.4 installer and everything seemed to work | | | fine - am running trial now to make sure. | | | | | | One question I had, you are including the .pyc files it looks like. I | | | had always thought that wasn't a good thing to do - just curious. | | | | | | During the un-install it seems that the site-packages\twisted\test | | | directory remained - I'm going to test on a completely clean setup | | | later to verify that it wasn't something I had left behind. | | | | | | thanks, | | | | | | --- | | | Bear | | | http://code-bear.com | | | | | | Open Source Applications Foundation (OSAF) | | | http://www.osafoundation.org | | | | | | PGP Fingerprint = 9996 719F 973D B11B E111 D770 9331 E822 40B3 CD29 | | | | | | | | | On Mar 30, 2005, at 12:26 PM, Cory Dodt wrote: | | | | | | These are to be considered "release candidates". Testing is | required to | | | determine if the installers are good enough to be considered final. | | | So please | | | try them and report problems. :-) | | | | | | This is based on the 2.0.0 final release of Twisted, so the RC | | | designation | | | only applies to the installers themselves. | | | | | | Now available at | | | http://twisted.sourceforge.net/Twisted_NoDocs-2.0.0.win32(installer- | | | rc1)-py2.3.exe | | | and | | | http://twisted.sourceforge.net/Twisted_NoDocs-2.0.0.win32(installer- | | | rc1)-py2.4.exe | | | | | |> -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (MingW32) Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org iD8DBQFCTCp73A5SrXAiHQcRAhylAJ99lLClly+peM+MVvg67LOyz6lsYgCfTNDr V+NvS1zzIc9C+t3R5VpPDEY= =fqR7 -----END PGP SIGNATURE-----
Cory Dodt <corydodt@twistedmatrix.com> writes:
RC2's are out. No pyc, lots of replacing SVN-Trunk with 2.0.0.
Excuse the dumb question from someone who hasn't followed the split very closely, but is this just twisted core or is it the sumo pachage? The package seems to include twisted.web, but not (for example) twisted.news. So I'm confused... (If it's only core, what's the expectation on Windows binaries for the other components?) Paul. -- Power corrupts. Absolute power is kind of neat. -- John Lehman
Not only that, it seems that at least rc2 neglects to include the zope interface. On Thu, 31 Mar 2005 20:51:59 +0100, Paul Moore <pf_moore@yahoo.co.uk> wrote:
Cory Dodt <corydodt@twistedmatrix.com> writes:
RC2's are out. No pyc, lots of replacing SVN-Trunk with 2.0.0.
Excuse the dumb question from someone who hasn't followed the split very closely, but is this just twisted core or is it the sumo pachage? [...]
A quick follow-up to my previous post. I had an ssh session open that had the twisted\test directory active - that's why un-install couldn't remove it. sorry for the false report. --- Bear http://code-bear.com Open Source Applications Foundation (OSAF) http://www.osafoundation.org PGP Fingerprint = 9996 719F 973D B11B E111 D770 9331 E822 40B3 CD29 On Mar 30, 2005, at 12:26 PM, Cory Dodt wrote:
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1
These are to be considered "release candidates". Testing is required to determine if the installers are good enough to be considered final. So please try them and report problems. :-)
This is based on the 2.0.0 final release of Twisted, so the RC designation only applies to the installers themselves.
Now available at http://twisted.sourceforge.net/Twisted_NoDocs-2.0.0.win32(installer- rc1)-py2.3.exe and http://twisted.sourceforge.net/Twisted_NoDocs-2.0.0.win32(installer- rc1)-py2.4.exe
-----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (MingW32) Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org
iD8DBQFCSuFd3A5SrXAiHQcRAlHDAJ0bPKkefqKCzCYoj0M1zmNvGLFfdwCgiz9u q22Vflhb70RV4xy/iKVUCps= =Y2A8 -----END PGP SIGNATURE-----
_______________________________________________ Twisted-Python mailing list Twisted-Python@twistedmatrix.com http://twistedmatrix.com/cgi-bin/mailman/listinfo/twisted-python
participants (6)
-
Christopher Armstrong
-
Cory Dodt
-
David Ripton
-
Jim McCoy
-
Mike Taylor
-
Paul Moore