[Repoze-dev] Fwd: [Pyramid-checkins] Broken: Pylons/pyramid#1123 (master - ba0593a)

2014-11-05 Thread Tres Seaver
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Unicode literals are a no-no for 3.2-compatibility:

  File
/home/travis/virtualenv/python3.2.5/lib/python3.2/site-packages/translationstring-1.2-py3.2.egg/translationstring/__init__.py,
line 239

 msgid = u'%s\x04%s' % (context, tstring)

 ^

 SyntaxError: invalid syntax



-  Forwarded Message 
Subject: [Pyramid-checkins] Broken: Pylons/pyramid#1123 (master - ba0593a)
Date: Tue, 04 Nov 2014 23:21:56 +
From: Travis CI notificati...@travis-ci.org
To: pyramid-check...@lists.repoze.org

Build Update for Pylons/pyramid
- -

Build: #1123
Status: Broken

Duration: 3 minutes and 39 seconds
Commit: ba0593a (master)
Author: Michael Merickel
Message: fix squashed docstring on set_request_property

fixes #1436

View the changeset:
https://github.com/Pylons/pyramid/compare/f8cee4b3021f...ba0593aa9488

View the full build log and details:
https://travis-ci.org/Pylons/pyramid/builds/40006145

- --

You can configure recipients for build notifications in your .travis.yml
file. See http://docs.travis-ci.com/user/notifications





-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)

iEYEARECAAYFAlRaOtQACgkQ+gerLs4ltQ6vhACgirD6iDrhZt/t4faesFOysl+r
CwEAn2bXX6fXi7Dxk0U4lnwAeobriRn8
=kPgJ
-END PGP SIGNATURE-
___
Repoze-dev mailing list
Repoze-dev@lists.repoze.org
https://lists.repoze.org/mailman/listinfo/repoze-dev


Re: [Repoze-dev] [Pyramid-checkins] Broken: Pylons/pyramid#1123 (master - ba0593a)

2014-11-05 Thread Wichert Akkerman

 On 05 Nov 2014, at 15:57, Tres Seaver tsea...@palladion.com wrote:
 Unicode literals are a no-no for 3.2-compatibility:

How important is 3.2 compatibility?

Wichert.

___
Repoze-dev mailing list
Repoze-dev@lists.repoze.org
https://lists.repoze.org/mailman/listinfo/repoze-dev


Re: [Repoze-dev] [Pyramid-checkins] Broken: Pylons/pyramid#1123 (master - ba0593a)

2014-11-05 Thread Tres Seaver
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On 11/05/2014 10:44 AM, Wichert Akkerman wrote:
 
 On 05 Nov 2014, at 15:57, Tres Seaver tsea...@palladion.com
 wrote: Unicode literals are a no-no for 3.2-compatibility:
 
 How important is 3.2 compatibility?

We don't ordinarily drop a supported Python version a non-major release.
 As a dependency for pyramid, if translationstring drops 3.2
compatiblity, we would need to pin it for release branches to versions
which preserved it.  Note that the classifiers for translationstring 1.2
still claim support back to 2.4:

  https://pypi.python.org/pypi/translationstring/1.2

although testing versions  2.6 with tox is no longer feasible.



Tres.
- -- 
===
Tres Seaver  +1 540-429-0999  tsea...@palladion.com
Palladion Software   Excellence by Designhttp://palladion.com
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)

iEYEARECAAYFAlRaVoYACgkQ+gerLs4ltQ4P8gCgh+OCSzYo9/Apd/Ifz5lIiVWK
F0kAoMSHt4Vri2QjhpHNLCatJ+gFUnvf
=NKAB
-END PGP SIGNATURE-
___
Repoze-dev mailing list
Repoze-dev@lists.repoze.org
https://lists.repoze.org/mailman/listinfo/repoze-dev


Re: [Repoze-dev] [Pyramid-checkins] Broken: Pylons/pyramid#1123 (master - ba0593a)

2014-11-05 Thread Wichert Akkerman

 On 05 Nov 2014, at 17:55, Tres Seaver tsea...@palladion.com wrote:
 
 -BEGIN PGP SIGNED MESSAGE-
 Hash: SHA1
 
 On 11/05/2014 10:44 AM, Wichert Akkerman wrote:
 
 On 05 Nov 2014, at 15:57, Tres Seaver tsea...@palladion.com
 wrote: Unicode literals are a no-no for 3.2-compatibility:
 
 How important is 3.2 compatibility?
 
 We don't ordinarily drop a supported Python version a non-major release.

So we can consider dropping 3.2 for Pyramid 1.6? Dropping that would make 
straddling easier, which sounds worth it to me.

 As a dependency for pyramid, if translationstring drops 3.2
 compatiblity, we would need to pin it for release branches to versions
 which preserved it.  Note that the classifiers for translationstring 1.2
 still claim support back to 2.4:
 
  https://pypi.python.org/pypi/translationstring/1.2
 
 although testing versions  2.6 with tox is no longer feasible.

I’ve updated that for the 1.3 release. I’ve also setup travis to automatically 
run tests on Python 2.6-2.7 and 3.2-3.4. I don’t know if anyone uses the tox 
configuration, so I’ve left that in place.

Wichert.

___
Repoze-dev mailing list
Repoze-dev@lists.repoze.org
https://lists.repoze.org/mailman/listinfo/repoze-dev


Re: [Repoze-dev] [Pyramid-checkins] Broken: Pylons/pyramid#1123 (master - ba0593a)

2014-11-05 Thread Malthe Borch
+1

Python 3.2 is not likely to be relevant going forward because conservative
users are anyway still on 2.x.

Malthe
On Wed 5 Nov 2014 at 21:39 Wichert Akkerman wich...@wiggy.net wrote:


  On 05 Nov 2014, at 17:55, Tres Seaver tsea...@palladion.com wrote:
 
  -BEGIN PGP SIGNED MESSAGE-
  Hash: SHA1
 
  On 11/05/2014 10:44 AM, Wichert Akkerman wrote:
 
  On 05 Nov 2014, at 15:57, Tres Seaver tsea...@palladion.com
  wrote: Unicode literals are a no-no for 3.2-compatibility:
 
  How important is 3.2 compatibility?
 
  We don't ordinarily drop a supported Python version a non-major release.

 So we can consider dropping 3.2 for Pyramid 1.6? Dropping that would make
 straddling easier, which sounds worth it to me.

  As a dependency for pyramid, if translationstring drops 3.2
  compatiblity, we would need to pin it for release branches to versions
  which preserved it.  Note that the classifiers for translationstring 1.2
  still claim support back to 2.4:
 
   https://pypi.python.org/pypi/translationstring/1.2
 
  although testing versions  2.6 with tox is no longer feasible.

 I’ve updated that for the 1.3 release. I’ve also setup travis to
 automatically run tests on Python 2.6-2.7 and 3.2-3.4. I don’t know if
 anyone uses the tox configuration, so I’ve left that in place.

 Wichert.

 ___
 Repoze-dev mailing list
 Repoze-dev@lists.repoze.org
 https://lists.repoze.org/mailman/listinfo/repoze-dev

___
Repoze-dev mailing list
Repoze-dev@lists.repoze.org
https://lists.repoze.org/mailman/listinfo/repoze-dev