Skip to content

Commit 7be51d9

Browse files
committed
8.10.0
1 parent e00fdda commit 7be51d9

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

CHANGES

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
1-
Version 8.10 (Unreleased)
1+
Version 8.11 (Unreleased)
22
-------------------------
33

4+
Version 8.10
5+
------------
6+
47
- New and improved UI.
58
- Removed previously deprecated ``sentry celery`` command.
69
- Replaced the ``events`` queue with ``events.{preprocess,process,save}_event``.

setup.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,11 @@
2323
:license: BSD, see LICENSE for more details.
2424
"""
2525
from __future__ import absolute_import
26+
import sys
2627

27-
# if sys.version_info[:2] != (2, 7):
28-
# print 'Error: Sentry requires Python 2.7'
29-
# sys.exit(1)
28+
if sys.version_info[:2] != (2, 7):
29+
print 'Error: Sentry requires Python 2.7'
30+
sys.exit(1)
3031

3132
import os
3233
import os.path
@@ -48,7 +49,7 @@
4849
)
4950

5051
# The version of sentry
51-
VERSION = '8.10.0.dev0'
52+
VERSION = '8.10.0'
5253

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

0 commit comments

Comments
 (0)