timothycrosley / deprecated.pies

The simplest (and tastiest) way to write one program that runs on both Python 2 and Python 3.
MIT License
148 stars 7 forks source link

tox.ini: Install local pies2overrides #24

Closed msabramo closed 10 years ago

msabramo commented 10 years ago

This makes tox install the local version of pies2overrides instead of pulling it from PyPI.

This addresses the following comment:

https://github.com/timothycrosley/pies/pull/23#issuecomment-35893411

msabramo commented 10 years ago

Hmm, this seems to break Python 3 envs in tox, because pies2overrides shouldn't be included in Python 3. This looks like the same issue as #19.

msabramo commented 10 years ago

Fixed the Python 3 problem and rebased. Old HEAD: 25c1955. New HEAD: fdf2632

$ tox
...
  py26: commands succeeded
  py27: commands succeeded
  py32: commands succeeded
  py33: commands succeeded
  pypy: commands succeeded
  congratulations :)
msabramo commented 10 years ago

Making tox config a bit more DRY. Old HEAD: fdf2632. New HEAD: 5834ccc.

timothycrosley commented 10 years ago

Everything looks good, thanks!