Skip to content

Commit

Permalink
Update setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
hydoh committed Sep 9, 2022
1 parent 13db3e1 commit 78a9559
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,19 +14,19 @@


MAJOR = 1
MINOR = 1
MICRO = 1
MINOR = 2
MICRO = 0
VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)

IS_RELEASED = False
IS_RELEASED = True
IS_DEV = False
DEV_VERSION = ''
if IS_RELEASED:
pass
elif IS_DEV:
VERSION += '.' + DEV_VERSION
else:
VERSION += '.9001'
VERSION += '.9000'


DESC = 'Python interface for hBayesDM, hierarchical Bayesian modeling of RL-DM tasks'
Expand Down

0 comments on commit 78a9559

Please sign in to comment.