Skip to content

Commit

Permalink
bumps pychadwick version (#59)
Browse files Browse the repository at this point in the history
* bumps pychadwick version

* pytest version

* updates lahman tests
  • Loading branch information
bdilday authored Feb 6, 2021
1 parent d7623ba commit 6b95091
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion pybbda/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
logging.basicConfig(format="%(levelname)s:%(name)s:%(module)s:%(message)s")
logger = logging.getLogger("pybbda")

_version = "0.3.0"
_version = "0.3.1"

PYBBDA_LOG_LEVEL_NAME = os.environ.get("PYBBDA_LOG_LEVEL", "")
_PYBBDA_LOG_LEVEL_MAP = {
Expand Down
2 changes: 1 addition & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pytest==5.3.4
pytest>=6.0.0
tox==3.14.3
setuptools
Sphinx==3.0.3
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ requests~=2.22.0
scipy~=1.4.1
sqlalchemy~=1.3.13
tqdm~=4.46.1
pychadwick~=0.4.0
pychadwick~=0.5.0
matplotlib~=3.1.3
seaborn~=0.10.1
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.3.0
current_version = 0.3.1

[flake8]
max-line-length = 90
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def process_line(line):

setup(
name="pybbda",
version="0.3.0",
version="0.3.1",
author="Ben Dilday",
author_email="ben.dilday.phd@gmail.com",
description="Baseball data and analysis in Python",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,4 @@ def test_from_lahman_records():
def test_from_lahman():
player_registry = PlayerRegistry()
player_registry.load_from_lahman(pa_limit=180)
assert player_registry.len == 32646
assert player_registry.len == 32803
2 changes: 1 addition & 1 deletion tests/data/test_lahman/test_lahman.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ def lahman_data():


def test_lahman_datadum(lahman_data):
assert len(lahman_data.batting) == 107429
assert len(lahman_data.batting) == 108789


def test_missing_path(lahman_data):
Expand Down

0 comments on commit 6b95091

Please sign in to comment.