Skip to content

Commit

Permalink
Entirely remove the thirdparty directory
Browse files Browse the repository at this point in the history
Pyglet was removed from this, but the directory and some other
references were still there.
  • Loading branch information
asmeurer committed Jul 16, 2011
1 parent 6f851a3 commit e5c9c11
Show file tree
Hide file tree
Showing 5 changed files with 2 additions and 47 deletions.
2 changes: 0 additions & 2 deletions MANIFEST.in
Expand Up @@ -3,8 +3,6 @@ recursive-include doc *
prune doc/_build
recursive-include examples *.py README

recursive-include sympy/thirdparty/pyglet *

include sympy/utilities/mathml/data/*.xsl

include LICENSE
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Expand Up @@ -40,7 +40,7 @@
sys.exit(-1)

# Check that this list is uptodate against the result of the command:
# $ for i in `find sympy -name __init__.py | rev | cut -f 2- -d '/' | rev | egrep -v "^sympy$|thirdparty/" `; do echo "'${i//\//.}',"; done | sort
# $ for i in `find sympy -name __init__.py | rev | cut -f 2- -d '/' | rev`; do echo "'${i//\//.}',"; done | sort
modules = [
'sympy.assumptions',
'sympy.assumptions.handlers',
Expand Down Expand Up @@ -79,7 +79,6 @@
'sympy.solvers',
'sympy.statistics',
'sympy.tensor',
'sympy.thirdparty',
'sympy.utilities',
'sympy.utilities.mathml',
]
Expand Down
39 changes: 0 additions & 39 deletions sympy/thirdparty/__init__.py

This file was deleted.

1 change: 0 additions & 1 deletion sympy/utilities/runtests.py
Expand Up @@ -218,7 +218,6 @@ def doctest(*paths, **kwargs):
verbose = kwargs.get("verbose", False)
blacklist = kwargs.get("blacklist", [])
blacklist.extend([
"sympy/thirdparty/pyglet", # segfaults
"doc/src/modules/mpmath", # needs to be fixed upstream
"sympy/mpmath", # needs to be fixed upstream
"doc/src/modules/plotting.txt", # generates live plots
Expand Down
4 changes: 1 addition & 3 deletions sympy/utilities/tests/test_code_quality.py
Expand Up @@ -8,7 +8,7 @@
# System path separator (usually slash or backslash) to be
# used with excluded files, e.g.
# exclude = set([
# "%(sep)sthirdparty%(sep)s" % sepd,
# "%(sep)smpmath%(sep)s" % sepd,
# ])
sepd = {"sep": sep}

Expand Down Expand Up @@ -104,7 +104,6 @@ def test(fname):
file.close()

exclude = set([
"%(sep)sthirdparty%(sep)s" % sepd,
"%(sep)smpmath%(sep)s" % sepd,
])
check_directory_tree(SYMPY_PATH, test, exclude)
Expand Down Expand Up @@ -146,7 +145,6 @@ def test(fname):
file.close()

exclude = set([
"%(sep)sthirdparty%(sep)s" % sepd,
"%(sep)s__init__.py" % sepd,
"%(sep)sinteractive%(sep)ssession.py" % sepd,
# Taken from Python stdlib:
Expand Down

0 comments on commit e5c9c11

Please sign in to comment.