-----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...
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
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
-----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 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 | | | | | |>
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.
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