Skip to content

Commit 2272e9a

Browse files
committed
Version bump to v2.0.0-beta.34
+ Using relative imports + Fix windows process
1 parent 21a9a4e commit 2272e9a

File tree

8 files changed

+816
-17
lines changed

8 files changed

+816
-17
lines changed

README.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
CodeIntel
22
=========
33

4-
.. image:: https://travis-ci.org/Kronuz/CodeIntel.svg
5-
:target: https://travis-ci.org/Kronuz/CodeIntel
4+
.. image:: https://travis-ci.org/SublimeCodeIntel/CodeIntel.svg
5+
:target: https://travis-ci.org/SublimeCodeIntel/CodeIntel
66

7-
.. image:: https://ci.appveyor.com/api/projects/status/github/Kronuz/CodeIntel?svg=true
8-
:target: https://ci.appveyor.com/project/Kronuz/CodeIntel
7+
.. image:: https://ci.appveyor.com/api/projects/status/github/SublimeCodeIntel/CodeIntel?svg=true
8+
:target: https://ci.appveyor.com/project/SublimeCodeIntel/CodeIntel
99

1010
Code intelligence ported from Open Komodo Editor. Supports all the languages
1111
Komodo Editor supports for Code Intelligence (CIX, CodeIntel2):

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,4 +101,4 @@ on_success:
101101
# See Appveyor's documentation for more details. Or you can simply
102102
# access your wheels from the Appveyor "artifacts" tab for your build.
103103
- "dir .\\dist"
104-
- "if \"%APPVEYOR_REPO_TAG%\"==\"true\" ( twine upload -u Kronuz -p %PYPIPASSWORD% dist\\* )"
104+
- "twine upload -u Kronuz -p %PYPIPASSWORD% dist\\*"

codeintel/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '2.0.0-beta.33'
1+
__version__ = '2.0.0-beta.34'

codeintel/client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,7 @@ def cleanup(self):
322322

323323

324324
if sys.platform.startswith("win"):
325-
from win32_named_pipe import Win32Pipe
325+
from .win32_named_pipe import Win32Pipe
326326

327327
class _PipeConnection(Win32Pipe):
328328
"""This is a wrapper around our Win32Pipe class to expose the expected
@@ -532,7 +532,7 @@ def kill(self):
532532
self._shutdown_callback(self)
533533

534534
def init_child(self):
535-
import process
535+
from . import process
536536
assert threading.current_thread().name != "MainThread", \
537537
"CodeIntelManager.init_child should run on background thread!"
538538
self.log.debug("initializing child process")

codeintel/process.py

Lines changed: 806 additions & 5 deletions
Large diffs are not rendered by default.

codeintel/win32_named_pipe.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
# Win32 named pipe helper
44

55
from __future__ import absolute_import
6-
from six.moves import range
76
__all__ = ["Win32Pipe"]
87

98
import sys

codeintel/winprocess.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@
2828
from __future__ import absolute_import
2929
from ctypes import c_void_p, POINTER, sizeof, Structure, windll, WinError, WINFUNCTYPE
3030
from ctypes.wintypes import BOOL, BYTE, DWORD, HANDLE, LPCWSTR, LPWSTR, UINT, WORD
31-
import six
3231

3332
LPVOID = c_void_p
3433
LPBYTE = POINTER(BYTE)
@@ -128,7 +127,7 @@ def __init__(self, dict):
128127
self._as_parameter_ = None
129128
else:
130129
values = ["%s=%s" % (key, value)
131-
for (key, value) in six.iteritems(dict)]
130+
for (key, value) in dict.items()]
132131
values.append("")
133132
self._as_parameter_ = LPCWSTR("\0".join(values))
134133

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ def package_files(directory):
245245
Go, JavaScript, Mason, XBL, XUL, RHTML, SCSS, Python, HTML, Ruby, Python3, XML,
246246
Sass, XSLT, Django, HTML5, Perl, CSS, Twig, Less, Smarty, Node.js, Tcl,
247247
TemplateToolkit, PHP, C/C++, Objective-C.""",
248-
url="https://github.com/Kronuz/CodeIntel",
248+
url="https://github.com/SublimeCodeIntel/CodeIntel",
249249
author="Komodo Edit Team",
250250
author_email="[email protected]",
251251
maintainer="German Mendez Bravo (Kronuz)",

0 commit comments

Comments
 (0)