Skip to content

Commit

Permalink
[make wheels] maint: isreleased = False -> True ; version 1.3.0.dev0 …
Browse files Browse the repository at this point in the history
…-> 1.3.0rc1
  • Loading branch information
giganano committed Oct 25, 2021
1 parent cefc2d6 commit 140b46d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,12 +99,12 @@
MAJOR = 1
MINOR = 3
MICRO = 0
DEV = 0
DEV = None
ALPHA = None
BETA = None
RC = None
RC = 1
POST = None
ISRELEASED = False
ISRELEASED = True
VERSION = "%d.%d.%d" % (MAJOR, MINOR, MICRO)
if DEV is not None:
assert isinstance(DEV, int), "Invalid version information"
Expand Down

0 comments on commit 140b46d

Please sign in to comment.