Skip to content

Commit

Permalink
Merge pull request #205 from cwendt94/FixNumPyVersionError
Browse files Browse the repository at this point in the history
Update NumPy version
  • Loading branch information
cwendt94 authored May 3, 2021
2 parents d6d3b5c + 6c7f92a commit b34f344
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/espn-api-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: '3.6'
python-version: '3.8'
- name: Install dependencies
run: python setup.py install
- name: Test integration
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/espn-api.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: '3.6'
python-version: '3.8'
- name: Install dependencies
run: python setup.py install
- name: Test with nosetests
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
version='0.14.1',
author='Christian Wendt',
description='ESPN API',
install_requires=['requests>=2.0.0,<3.0.0', 'pandas>=0.11.0,<=0.25.3', 'numpy>=1.15,<=1.17.0'],
install_requires=['requests>=2.0.0,<3.0.0', 'pandas>=0.11.0,<=0.25.3', 'numpy>=1.15,<=1.17.5'],
setup_requires=['nose>=1.0'],
test_suite='nose.collector',
tests_require=['nose', 'requests_mock', 'coverage'],
Expand Down

0 comments on commit b34f344

Please sign in to comment.