Skip to content

Commit

Permalink
Use dev version number
Browse files Browse the repository at this point in the history
  • Loading branch information
jagapiou committed Jul 17, 2023
1 parent 05399ae commit a328b13
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion meltingpot/python/configs/bots/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@

def _find_models_root() -> str:
import re # pylint: disable=g-import-not-at-top
return re.sub('meltingpot/.*?$', 'meltingpot/assets/saved_models/', __file__)
return re.sub('^(.*)/meltingpot/.*?$', r'\1/meltingpot/assets/saved_models/', __file__)


MODELS_ROOT = _find_models_root()
Expand Down
2 changes: 1 addition & 1 deletion meltingpot/python/utils/substrates/builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@

def _find_root() -> str:
import re # pylint: disable=g-import-not-at-top
return re.sub('meltingpot/.*?$', '', __file__)
return re.sub('^(.*)/meltingpot/.*?$', r'\1', __file__)


_MELTINGPOT_ROOT = _find_root()
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
import setuptools
from setuptools.command import build_py

VERSION = '2.1.1'
VERSION = '2.1.1-dev.9'
ASSETS_VERSION = '2.1.0'

ASSETS_URL = f'http://storage.googleapis.com/dm-meltingpot/meltingpot-assets-{ASSETS_VERSION}.tar.gz'
Expand Down

0 comments on commit a328b13

Please sign in to comment.