Skip to content

Commit f62e24d

Browse files
authored
Officially support Py37 (#6)
1 parent 24670a7 commit f62e24d

File tree

5 files changed

+6
-4
lines changed

5 files changed

+6
-4
lines changed

.travis.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,6 @@ matrix:
2020
env: TOXENV=lint
2121
- python: 3.6
2222
env: TOXENV=documents
23-
allow_failures:
24-
- python: 3.7-dev
2523

2624
# addons:
2725
# apt:

docs/src/markdown/changelog.md

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

3+
## 1.0.2
4+
5+
- **FIX**: Officially support Python 3.7.
6+
37
## 1.0.1
48

59
- **FIX**: Ensure that all patterns in `glob` that have a directory preceding `**` but also end with `**` returns the preceding directory.

mkdocs.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@ markdown_extensions:
4747
- pymdownx.superfences:
4848
preserve_tabs: true
4949
- pymdownx.highlight:
50-
css_class: codehilite
5150
extend_pygments_lang:
5251
- name: php-inline
5352
lang: php

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@ def get_description():
7171
'Programming Language :: Python :: 3.4',
7272
'Programming Language :: Python :: 3.5',
7373
'Programming Language :: Python :: 3.6',
74+
'Programming Language :: Python :: 3.7',
7475
'Topic :: Software Development :: Libraries :: Python Modules'
7576
]
7677
)

wcmatch/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""Version."""
22

33
# (major, minor, micro, release type, pre-release build, post-release build)
4-
version_info = (1, 0, 1, 'final', 0, 0)
4+
version_info = (1, 0, 2, 'final', 0, 0)
55

66

77
def _version():

0 commit comments

Comments
 (0)