-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix fcache not handling different filesystems on Windows (#55)
fix #54 - bumped pokepy version to 0.6.1 - add appdirs to requirements.txt - bumped python versions in circleci config - ignore fcache files on coverage and linting - fix a py27-specific error
- Loading branch information
Showing
12 changed files
with
455 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,7 @@ | |
__author__ = 'Paul Hallett' | ||
__email__ = '[email protected]' | ||
__credits__ = ["Paul Hallett", "Owen Hallett", "Kronopt"] | ||
__version__ = '0.6.0' | ||
__version__ = '0.6.1' | ||
__copyright__ = 'Copyright Paul Hallett 2016' | ||
__license__ = 'BSD' | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#!/usr/bin/env python | ||
# coding: utf-8 | ||
|
||
""" | ||
fcache | ||
Same codebase as fcache 0.4.7 (https://pypi.org/project/fcache/) | ||
except for a single fix (https://github.com/tsroten/fcache/pull/29) | ||
""" |
Oops, something went wrong.