Skip to content

Commit

Permalink
8.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mattrobenolt committed Nov 1, 2016
1 parent e00fdda commit 7be51d9
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
5 changes: 4 additions & 1 deletion CHANGES
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
Version 8.10 (Unreleased)
Version 8.11 (Unreleased)
-------------------------

Version 8.10
------------

- New and improved UI.
- Removed previously deprecated ``sentry celery`` command.
- Replaced the ``events`` queue with ``events.{preprocess,process,save}_event``.
Expand Down
9 changes: 5 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,11 @@
:license: BSD, see LICENSE for more details.
"""
from __future__ import absolute_import
import sys

# if sys.version_info[:2] != (2, 7):
# print 'Error: Sentry requires Python 2.7'
# sys.exit(1)
if sys.version_info[:2] != (2, 7):
print 'Error: Sentry requires Python 2.7'
sys.exit(1)

import os
import os.path
Expand All @@ -48,7 +49,7 @@
)

# The version of sentry
VERSION = '8.10.0.dev0'
VERSION = '8.10.0'

# Hack to prevent stupid "TypeError: 'NoneType' object is not callable" error
# in multiprocessing/util.py _exit_function when running `python
Expand Down

0 comments on commit 7be51d9

Please sign in to comment.