Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pyqode/core/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
import logging


__version__ = '2.12.2a4'
__version__ = '2.12.2a8'


logging.addLevelName(1, "PYQODEDEBUGCOMM")
Expand Down
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@
# - pyqode-uic
#
import sys
# Disable unit tests on local system when using stdeb3. This does not disable
# tests on the launchpad build machines.
import os
os.environ['DEB_BUILD_OPTIONS'] = 'nocheck'

Expand Down Expand Up @@ -82,7 +84,7 @@ def readme():
entry_points={
'console_scripts': [
'pyqode-console = pyqode.core.tools.console:main'
],
] if sys.version_info[0] > 2 else [], # To avoid Py2 v Py3 conflicts
'pyqode_plugins':
['code_edit = pyqode.core._designer_plugins'],
'pygments.styles':
Expand Down