Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[pre-commit.ci] pre-commit autoupdate #100

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .devcontainer/noop.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
This file is copied into the container along with environment.yml* from the
parent folder. This is done to prevent the Dockerfile COPY instruction from
parent folder. This is done to prevent the Dockerfile COPY instruction from
failing if no environment.yml is found.
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,18 @@
# See https://pre-commit.com/hooks.html for more hooks
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v2.4.0
rev: v4.0.1
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: check-yaml
- id: check-added-large-files
- repo: https://github.com/kynan/nbstripout
rev: master
rev: 0.5.0
hooks:
- id: nbstripout
files: ".ipynb"
- repo: https://github.com/psf/black
rev: stable
rev: 21.7b0
hooks:
- id: black
25 changes: 19 additions & 6 deletions checkenv.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,29 @@ def check_import(packagename):
else:
return False

assert sys.version_info.major >= 3 and sys.version_info.minor >= 6, 'Please install Python 3.6!'

packages = ['jupyter', 'pymc3', 'seaborn', 'matplotlib', 'numpy', 'scipy',
'pandas', 'tqdm', 'jupyterlab']
assert (
sys.version_info.major >= 3 and sys.version_info.minor >= 6
), "Please install Python 3.6!"

packages = [
"jupyter",
"pymc3",
"seaborn",
"matplotlib",
"numpy",
"scipy",
"pandas",
"tqdm",
"jupyterlab",
]

all_passed = True

for p in packages:
assert check_import(p),\
'{0} not present. Please install via pip or conda.'.format(p)
assert check_import(
p
), "{0} not present. Please install via pip or conda.".format(p)

if all_passed:
print('All checks passed. Your environment is good to go!')
print("All checks passed. Your environment is good to go!")
6 changes: 2 additions & 4 deletions data/baseballdb/README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,11 @@ Chadwick Baseball Bureau (http://www.chadwick-bureau.com),
from its Register of baseball personnel.

Player performance data for 1871 through 2014 is based on the
Lahman Baseball Database, version 2015-01-24, which is
Lahman Baseball Database, version 2015-01-24, which is
Copyright (C) 1996-2015 by Sean Lahman.

The tables Parks.csv and HomeGames.csv are based on the game logs
and park code table published by Retrosheet.
This information is available free of charge from and is copyrighted
by Retrosheet. Interested parties may contact Retrosheet at
by Retrosheet. Interested parties may contact Retrosheet at
http://www.retrosheet.org.


2 changes: 1 addition & 1 deletion data/baseballdb/core/AwardsManagers.csv
Original file line number Diff line number Diff line change
Expand Up @@ -176,5 +176,5 @@ showabu99,BBWAA Manager of the Year,2014,AL,,
willima04,BBWAA Manager of the Year,2014,NL,,
banisje01,BBWAA Manager of the Year,2015,AL,,
maddojo99,BBWAA Manager of the Year,2015,NL,,
francte01,BBWAA Manager of the Year,2016,AL,,
francte01,BBWAA Manager of the Year,2016,AL,,
roberda07,BBWAA Manager of the Year,2016,NL,,
Loading