Skip to content

Commit

Permalink
Python: Remove version stuff that is no longer needed, remove svn stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
brycelelbach committed Aug 23, 2012
1 parent c1b38ec commit 6459477
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 158 deletions.
91 changes: 0 additions & 91 deletions python/hpx/svn.py

This file was deleted.

6 changes: 2 additions & 4 deletions python/scripts/hpx_environment.py
Expand Up @@ -11,12 +11,10 @@

from optparse import OptionParser

from hpx_version import HPX_VERSION

if exists(join(path[0], "../hpx")):
path.append(join(path[0], ".."))
if exists(join(path[0], "../share/hpx-"+HPX_VERSION+"/python/hpx")):
path.append(join(path[0], "../share/hpx-"+HPX_VERSION+"/python"))
if exists(join(path[0], "../share/hpx/python/hpx")):
path.append(join(path[0], "../share/hpx/python"))

from hpx.environment import identify

Expand Down
6 changes: 2 additions & 4 deletions python/scripts/hpx_invoke.py
Expand Up @@ -16,12 +16,10 @@

from optparse import OptionParser

from hpx_version import HPX_VERSION

if exists(join(path[0], "../hpx")):
path.append(join(path[0], ".."))
if exists(join(path[0], "../share/hpx-"+HPX_VERSION+"/python/hpx")):
path.append(join(path[0], "../share/hpx-"+HPX_VERSION+"/python"))
if exists(join(path[0], "../share/hpx/python/hpx")):
path.append(join(path[0], "../share/hpx/python"))

from hpx.process import process

Expand Down
5 changes: 2 additions & 3 deletions python/scripts/hpx_optsweep.py
Expand Up @@ -17,12 +17,11 @@
from operator import *
from datetime import datetime
from pickle import dump
from hpx_version import HPX_VERSION

if osp.exists(osp.join(sys.path[0], "../hpx")):
sys.path.append(osp.join(sys.path[0], ".."))
if osp.exists(osp.join(sys.path[0], "../share/hpx-"+HPX_VERSION+"/python/hpx")):
sys.path.append(osp.join(sys.path[0], "../share/hpx-"+HPX_VERSION+"/python"))
if osp.exists(osp.join(sys.path[0], "../share/hpx/python/hpx")):
sys.path.append(osp.join(sys.path[0], "../share/hpx/python"))

from hpx.process import process

Expand Down
6 changes: 2 additions & 4 deletions python/scripts/hpx_run_tests.py
Expand Up @@ -16,12 +16,10 @@

from errno import ENOENT

from hpx_version import HPX_VERSION

if osp.exists(osp.join(sys.path[0], "../hpx")):
sys.path.append(osp.join(sys.path[0], ".."))
if osp.exists(osp.join(sys.path[0], "../share/hpx-"+HPX_VERSION+"/python/hpx")):
sys.path.append(osp.join(sys.path[0], "../share/hpx-"+HPX_VERSION+"/python"))
if osp.exists(osp.join(sys.path[0], "../share/hpx/python/hpx")):
sys.path.append(osp.join(sys.path[0], "../share/hpx/python"))

from hpx.process import process, process_group

Expand Down
39 changes: 0 additions & 39 deletions python/scripts/hpx_svnversion.py

This file was deleted.

13 changes: 0 additions & 13 deletions python/scripts/hpx_version.py

This file was deleted.

0 comments on commit 6459477

Please sign in to comment.