Skip to content

Commit

Permalink
2.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
oTree-org committed Nov 4, 2019
1 parent d148f3b commit 0252476
Show file tree
Hide file tree
Showing 130 changed files with 4,439 additions and 6,103 deletions.
1 change: 0 additions & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ include LICENSE
include README.rst
include requirements.txt
include requirements_mturk.txt
recursive-include otree/certs *
recursive-include otree/static *
recursive-include otree/templates *
recursive-include otree/project_template *
Expand Down
2 changes: 1 addition & 1 deletion PKG-INFO
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Metadata-Version: 2.1
Name: otree
Version: 2.3.2
Version: 2.5.0
Summary: oTree is a toolset that makes it easy to create and administer web-based social science experiments.
Home-page: http://otree.org/
Author: chris@otree.org
Expand Down
2 changes: 1 addition & 1 deletion otree/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# setup.py imports this module, so this module must not import django
# or any other 3rd party packages.
__version__ = '2.3.2'
__version__ = '2.5.0'
default_app_config = 'otree.apps.OtreeConfig'
10 changes: 5 additions & 5 deletions otree/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
from otree.models import BaseSubsession, BaseGroup, BasePlayer # noqa
from otree.constants import BaseConstants # noqa
from otree.views import Page, WaitPage # noqa
from otree.common import Currency, currency_range, safe_json # noqa
from otree.bots import Bot, Submission, SubmissionMustFail # noqa

models = _import_module('otree.models')
widgets = _import_module('otree.forms.widgets')
from otree.currency import Currency, currency_range # noqa
from otree.common import safe_json
from otree.bots import Bot, Submission, SubmissionMustFail, expect # noqa
from otree import models # noqa
from otree.forms import widgets # noqa
Loading

0 comments on commit 0252476

Please sign in to comment.