Skip to content

Commit 71b4a20

Browse files
authored
Fix install requirements (#13)
* Fix install requirements Setup doesn't need the requirements, install does. Thanks to @gregplaysguitar. Ref #12. * Documentation change. Flags and what's disabled/enabled isn't really that different anymore.
1 parent 3e1507d commit 71b4a20

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

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+
## 2.0.1
4+
5+
-**FIX**: Can't install due to requirements being assigned to setup opposed to install.
6+
37
## 2.0.0
48

59
!!! danger "Breaking Changes"

docs/src/markdown/glob.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ from wcmatch import glob
66

77
## Syntax
88

9-
The `glob` library provides methods for traversing the file system and returning files that matched a defined set of glob patterns. The library also provides functions for matching file paths which is similar to [`fnmatch`](fnmatch#fnmatchfnmatch), but for paths. In short, [`globmatch`](#globglobmatch) matches what [`glob`](#globglob) globs :slight_smile:. `globmatch`'s features are similar to `fnmatch`'s, but the flags and what features that are enabled by default varies.
9+
The `glob` library provides methods for traversing the file system and returning files that matched a defined set of glob patterns. The library also provides functions for matching file paths which is similar to [`fnmatch`](fnmatch#fnmatchfnmatch), but for paths. In short, [`globmatch`](#globglobmatch) matches what [`glob`](#globglob) globs :slight_smile:. `globmatch`'s features are similar to `fnmatch`'s.
1010

1111
!!! tip
1212
When using backslashes, it is helpful to use raw strings. In a raw string, a single backslash is used to escape a character `#!py3 r'\?'`. If you want to represent a literal backslash, you must use two: `#!py3 r'some\\path'`.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ def get_description():
6060
author_email='Isaac.Muse@gmail.com',
6161
url='https://github.com/facelessuser/wcmatch',
6262
packages=find_packages(exclude=['tests', 'tools']),
63-
setup_requires=get_requirements("requirements/setup.txt"),
63+
install_requires=get_requirements("requirements/setup.txt"),
6464
license='MIT License',
6565
classifiers=[
6666
'Development Status :: %s' % DEVSTATUS,

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 = (2, 0, 0, 'final', 0, 0)
4+
version_info = (2, 0, 1, 'final', 0, 0)
55

66

77
def _version():

0 commit comments

Comments
 (0)