Skip to content

Commit 72abf1d

Browse files
authored
Updates for PC4 (#59)
1 parent 7a1ee8c commit 72abf1d

File tree

6 files changed

+9
-11
lines changed

6 files changed

+9
-11
lines changed

CHANGES.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# ScopeHunter
22

3+
## 2.16.2
4+
5+
- **FIX**: Ensure ready for Package Control 4.0 (compatibility issues with latest `mdpopups`).
6+
37
## 2.16.1
48

59
- **FIX**: Fix issue with latest refactor where a variable was not always defined.

dependencies.json

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,7 @@
11
{
22
"*": {
33
">=3124": [
4-
"pygments",
5-
"python-markdown",
6-
"mdpopups",
7-
"python-jinja2",
8-
"markupsafe",
9-
"pymdownx",
10-
"pyyaml"
4+
"mdpopups"
115
]
126
}
137
}

docs/src/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
mkdocs_pymdownx_material_extras>=1.2.2
1+
mkdocs_pymdownx_material_extras>=1.4
22
mkdocs-git-revision-date-localized-plugin
33
mkdocs-minify-plugin
44
pyspelling

support.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import webbrowser
66
import re
77

8-
__version__ = "2.16.1"
8+
__version__ = "2.16.2"
99
__pc_name__ = 'ScopeHunter'
1010

1111

tests/test_json.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ def _get_json_files(self, pattern, folder='.'):
1414
for root, dirnames, filenames in os.walk(folder):
1515
for filename in fnmatch.filter(filenames, pattern):
1616
yield os.path.join(root, filename)
17-
dirnames = [d for d in dirnames if d not in ('.svn', '.git', '.tox')]
17+
dirnames[:] = [d for d in dirnames if d not in ('.svn', '.git', '.tox')]
1818

1919
def test_json_settings(self):
2020
"""Test each JSON file."""

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,6 @@ commands=
2727
flake8 "{toxinidir}"
2828

2929
[flake8]
30-
ignore=D202,D203,D401,W504,E741
30+
ignore=D202,D203,D401,W504,E741,N818
3131
max-line-length=120
3232
exclude=site/*.py,.tox/*,lib/png.py

0 commit comments

Comments
 (0)