-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Fixed issue between python and pandas not resolved in 0.2.9 - Dropped python 3.5 support from nfl_data_py to allow for parquet file usage
- Loading branch information
Showing
7 changed files
with
192 additions
and
69 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
Binary file not shown.
Binary file not shown.
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 |
---|---|---|
|
@@ -17,15 +17,16 @@ | |
URL = 'https://github.com/cooperdff/nfl_data_py' | ||
EMAIL = '[email protected]' | ||
AUTHOR = 'cooperdff' | ||
REQUIRES_PYTHON = '>=3.5.0' | ||
VERSION = '0.2.7' | ||
REQUIRES_PYTHON = '>=3.6.0' | ||
VERSION = '0.2.10' | ||
|
||
|
||
# What packages are required for this module to be executed? | ||
REQUIRED = [ | ||
'pandas>=1.3.5', | ||
'appdirs>=1.4.4', | ||
'fastparquet>=0.8.1', | ||
'pandas>1', | ||
'appdirs>1', | ||
'fastparquet>0.5', | ||
'python-snappy>0.5' | ||
] | ||
|
||
# What packages are optional? | ||
|
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 |
---|---|---|
@@ -1,8 +1,9 @@ | ||
# content of: tox.ini , put in same dir as setup.py | ||
[tox] | ||
envlist = python3.5,python3.6,python3.7,python3.8,python3.9 | ||
envlist = python3.6,python3.7,python3.8,python3.9 | ||
[testenv] | ||
deps = pytest | ||
# run the tests | ||
# ... or run any other command line tool you need to run here | ||
commands = pytest | ||
download = True |