Skip to content

Commit

Permalink
Rename jrun -> jgo
Browse files Browse the repository at this point in the history
The scijava jrun project had a name clash with an existing jrun on PyPI.
See: scijava/jgo#19
  • Loading branch information
ctrueden committed Nov 17, 2018
1 parent c112aef commit 9b86738
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions scyjava/__init__.py
Expand Up @@ -6,7 +6,7 @@
def _init_jvm():
import scyjava_config
import jnius_config
import jrun
import jgo

if jnius_config.vm_running:
_logger.warning('JVM is already running, will not add endpoints to classpath -- required classes might not be on classpath..')
Expand All @@ -33,7 +33,7 @@ def _init_jvm():
if len(endpoints) > 0:
endpoints = endpoints[:1] + sorted(endpoints[1:])
_logger.debug('Using endpoints %s', endpoints)
_, workspace = jrun.resolve_dependencies(
_, workspace = jgo.resolve_dependencies(
'+'.join(endpoints),
m2_repo=scyjava_config.get_m2_repo(),
cache_dir=scyjava_config.get_cache_dir(),
Expand Down
2 changes: 1 addition & 1 deletion scyjava_config.py
Expand Up @@ -29,7 +29,7 @@
_endpoints = []
_repositories = {}
_verbose = 0
_cache_dir = pathlib.Path.home() / '.jrun'
_cache_dir = pathlib.Path.home() / '.jgo'
_m2_repo = pathlib.Path.home() / '.m2' / 'repository'

def maven_scijava_repository():
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -11,6 +11,6 @@
author_email='hanslovskyp@janelia.hhmi.org',
description='scyjava',
url='https://github.com/scijava/scyjava',
install_requires=['pyjnius', 'jrun']
install_requires=['pyjnius', 'jgo']
)

0 comments on commit 9b86738

Please sign in to comment.