Skip to content

Commit

Permalink
MAINT: Switch to the PyPI version of plex
Browse files Browse the repository at this point in the history
This gives exactly the same output as before
  • Loading branch information
eric-wieser committed Dec 29, 2016
1 parent dc2c4f7 commit 97a97b8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions numpy/linalg/lapack_lite/README
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ required by the ``LinearAlgebra`` module, and wrapped by the ``lapack_lite``
module. The scripts in this directory can be used to create these files
automatically from a directory of LAPACK source files.

You'll need `Plex 1.1.4`_ installed to do the appropriate scrubbing.
You'll need `plex 2.0.0dev`_, available from PyPI, installed to do the appropriate scrubbing.

.. _Plex 1.1.4: http://www.cosc.canterbury.ac.nz/~greg/python/Plex/
.. _plex 2.0.0dev: https://pypi.python.org/pypi/plex/

The routines that ``lapack_litemodule.c`` wraps are listed in
``wrapped_routines``, along with a few exceptions that aren't picked up
Expand Down
4 changes: 2 additions & 2 deletions numpy/linalg/lapack_lite/clapack_scrub.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
import sys, os
from io import StringIO
import re
from Plex import Scanner, Str, Lexicon, Opt, Bol, State, AnyChar, TEXT, IGNORE
from Plex.Traditional import re as Re
from plex import Scanner, Str, Lexicon, Opt, Bol, State, AnyChar, TEXT, IGNORE
from plex.traditional import re as Re

class MyScanner(Scanner):
def __init__(self, info, name='<default>'):
Expand Down

0 comments on commit 97a97b8

Please sign in to comment.