-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* unpins versions * test py3.8+ only * formatting * make clean * docker tests * fixes statcast daily and retrosheet tables * approx test for trig
- Loading branch information
Showing
21 changed files
with
92 additions
and
56 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
FROM python:3.10 | ||
|
||
WORKDIR /workdir | ||
|
||
COPY requirements.txt /workdir/requirements.txt | ||
COPY requirements-dev.txt /workdir/requirements-dev.txt | ||
|
||
RUN python3.10 -m pip install -r requirements-dev.txt | ||
RUN python3.10 -m pip install -r requirements.txt | ||
|
||
RUN make clean-data |
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 @@ | ||
version: "3.9" | ||
services: | ||
initdata: | ||
build: . | ||
volumes: | ||
- .:/workdir | ||
command: | ||
- python3.10 | ||
- -V |
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
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 |
---|---|---|
@@ -1,12 +1,12 @@ | ||
pytest>=6.0.0 | ||
tox==3.14.3 | ||
tox | ||
setuptools | ||
Sphinx==3.0.3 | ||
recommonmark==0.6.0 | ||
Sphinx | ||
recommonmark | ||
Pygments>=2.5.1 | ||
black>=22.3.0 | ||
flake8==3.7.8 | ||
sphinx-rtd-theme==0.4.3 | ||
sphinx-gallery==0.7.0 | ||
pytest-cov~=2.10.1 | ||
pytest-xdist~=2.1.0 | ||
flake8 | ||
sphinx-rtd-theme | ||
sphinx-gallery | ||
pytest-cov | ||
pytest-xdist |
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,15 +1,14 @@ | ||
attrs~=19.3.0 | ||
beautifulsoup4~=4.8.0 | ||
lxml~=4.6.2 | ||
numpy~=1.18.1 | ||
pandas~=1.1.0 | ||
requests~=2.22.0 | ||
scipy~=1.4.1 | ||
sqlalchemy~=1.3.13 | ||
tqdm~=4.46.1 | ||
pychadwick~=0.5.0 | ||
matplotlib~=3.1.3 | ||
seaborn~=0.10.1 | ||
plotnine~=0.7.1 | ||
adjustText==0.7.3 | ||
attrs | ||
beautifulsoup4 | ||
lxml | ||
pandas | ||
requests | ||
scipy | ||
sqlalchemy | ||
tqdm | ||
pychadwick>=0.6.1 | ||
matplotlib | ||
seaborn | ||
plotnine | ||
adjustText | ||
namedframes>=0.1.0 |
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
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