Skip to content

Commit

Permalink
Bumped up the fallback version
Browse files Browse the repository at this point in the history
  • Loading branch information
agronholm committed Dec 23, 2017
1 parent e50b9c6 commit e24e29f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apscheduler/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
try:
release = get_distribution('APScheduler').version.split('-')[0]
except DistributionNotFound:
release = '3.4.0'
release = '3.5.0'

version_info = tuple(int(x) if x.isdigit() else x for x in release.split('.'))
version = __version__ = '.'.join(str(x) for x in version_info[:3])
Expand Down

0 comments on commit e24e29f

Please sign in to comment.