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
5 changes: 1 addition & 4 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,10 @@ Requirements

pyqode.core depends on the following libraries:

- Python 2 (**>=2.7**) or Python 3 (**>= 3.2**)
- Python 3 (**>= 3.2**)
- PyQt5 or PyQt4 or PySide
- pygments
- pyqode.qt
- future
- qtawesome (optional)


Expand Down Expand Up @@ -91,8 +90,6 @@ We test the following combinations on Travis-CI:
+--------------------------+---------+---------+
| | PyQt4 | PyQt5 |
+==========================+=========+=========+
| GNU/Linux - Python 2.7 | yes | no |
+--------------------------+---------+---------+
| GNU/Linux - Python 3.4 | yes | yes |
+--------------------------+---------+---------+

Expand Down
1 change: 0 additions & 1 deletion examples/notepad/notepad/main_window.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
"""
This module contains the main window implementation.
"""
from __future__ import print_function
import weakref

import mimetypes
Expand Down
1 change: 0 additions & 1 deletion pyqodeng/core/api/code_edit.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
"""
This module contains the base code editor widget.
"""
from __future__ import print_function
import os
import sys
import logging
Expand Down
1 change: 0 additions & 1 deletion pyqodeng/core/api/folding.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
This module contains the code folding API.

"""
from __future__ import print_function
import logging
import sys
from pyqodeng.core.api.utils import TextBlockHelper
Expand Down
7 changes: 0 additions & 7 deletions pyqodeng/core/cache.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,6 @@
import logging
from qtpy import QtCore

try:
from future.builtins import open
from future.builtins import str
except:
pass # python 3.2 not supported


class Cache:
"""
Provides an easy acces to the cache by exposing some wrapper properties
Expand Down
5 changes: 0 additions & 5 deletions pyqodeng/core/managers/file.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,6 @@
This module contains the file helper implementation

"""
try:
from future.builtins import open
from future.builtins import str
except:
pass # python 3.2 not supported
import locale
import logging
import mimetypes
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ def readme():
author_email='[email protected]',
description=DESCRIPTION,
long_description=readme(),
install_requires=[pygments_req, 'qtpy>=2.2.1', 'future', "PySide6-Essentials"],
install_requires=[pygments_req, 'qtpy>=2.2.1', "PySide6-Essentials"],
tests_require=['pytest-xdist', 'pytest-cov', 'pytest-pep8', 'pytest'],
entry_points={
'console_scripts': [
Expand Down