Skip to content

Commit 47e243b

Browse files
authored
Merge pull request #26 from facelessuser/vendor-pep562
vendor pep562
2 parents 75dbbbf + 0a7ae6d commit 47e243b

File tree

12 files changed

+271
-17
lines changed

12 files changed

+271
-17
lines changed

.coveragerc

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
[run]
2+
omit=
3+
backrefs/pep562.py
4+
5+
[report]
6+
omit=
7+
backrefs/pep562.py

.pyspelling.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,8 @@ matrix:
1717
- title
1818
- alt
1919
ignores:
20-
- ':matches(code, pre)'
21-
- 'a:matches(.magiclink-compare, .magiclink-commit, .magiclink-repository)'
22-
- 'span.keys'
23-
- ':matches(.MathJax_Preview, .md-nav__link, .md-footer-custom-text, .md-source__repository, .headerlink, .md-icon)'
20+
- ':is(code, pre, a.magiclink, span.keys)'
21+
- ':is(.MathJax_Preview, .md-nav__link, .md-footer-custom-text, .md-source__repository, .headerlink, .md-icon)'
2422
- pyspelling.filters.url:
2523

2624
- name: markdown
@@ -49,7 +47,7 @@ matrix:
4947
- name: python
5048
sources:
5149
- setup.py
52-
- "{wcmatch,tests}/**/*.py"
50+
- "{wcmatch,tests,tools}/**/*.py"
5351
hunspell:
5452
d: docs/src/dictionary/hunspell/en_US
5553
aspell:

LICENSE.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2018 facelessuser
3+
Copyright (c) 2018 - 2019 facelessuser
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal
@@ -18,4 +18,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1818
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1919
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2020
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21-
SOFTWARE.
21+
SOFTWARE.

docs/src/dictionary/en-custom.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
API
22
Accessors
3+
Backport
34
Changelog
45
EmojiOne
56
Fnmatch
7+
GitHub
68
Glob
79
Lookahead
810
MERCHANTABILITY

docs/src/markdown/changelog.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
# Changelog
22

3-
## 2.0.4
3+
## 2.1.0
44

5+
- **NEW**: Deprecate `version` and `version_info` in favor of the more standard `__version__` and `__version_info__`.
56
- **FIX**: Fix issue where negated patterns would trigger before end of path.
67
- **FIX**: Fix `GLOBSTAR` regular expression pattern issues.
78

docs/src/markdown/license.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
The MIT License (MIT)
66

7-
Copyright (c) 2018 Isaac Muse
7+
Copyright (c) 2018 - 2019 Isaac Muse
88

99
Permission is hereby granted, free of charge, to any person obtaining a copy
1010
of this software and associated documentation files (the "Software"), to deal
Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

mkdocs.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ repo_url: https://github.com/facelessuser/wcmatch
44
edit_uri: tree/master/docs/src/markdown
55
site_description: A wildcard file name matching library
66
copyright: |
7-
Copyright &copy; 2014 - 2018 <a href="https://github.com/facelessuser">Isaac Muse</a>
8-
<br><span class="md-footer-custom-text">emoji provided free by </span><a href="http://www.emojione.com">EmojiOne</a>
7+
Copyright &copy; 2014 - 2019 <a href="https://github.com/facelessuser">Isaac Muse</a>
8+
<br><span class="md-footer-custom-text">emoji provided free by <a href="http://www.emojione.com">EmojiOne</a></span>
99
1010
docs_dir: docs/src/markdown
1111
theme:
@@ -86,6 +86,6 @@ extra:
8686
- type: github
8787
link: https://github.com/facelessuser
8888
extra_css:
89-
- extra-83f68d2c59.css
89+
- extra-30d8e6755c.css
9090
extra_javascript:
9191
- extra-0b9b22dd13.js

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tox]
22
skipsdist=true
33
envlist=
4-
{py34,py35,py36,py37,py38},
4+
py34,py35,py36,py37,py38,
55
lint
66

77
[testenv]
@@ -28,7 +28,7 @@ commands=
2828
{envbindir}/pyspelling
2929

3030
[flake8]
31-
exclude=build/*,.tox/*
31+
exclude=build/*,.tox/*,wcmatch/pep562.py
3232
max-line-length=120
3333
ignore=D202,D203,D401,N802,N801,N803,N806,E741,W504
3434

wcmatch/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
2121
IN THE SOFTWARE.
2222
"""
23-
from pep562 import Pep562
23+
from .pep562 import Pep562
2424
import sys
2525
import warnings
2626
from .__meta__ import __version_info__, __version__

0 commit comments

Comments
 (0)