Skip to content

Commit 6b95091

Browse files
authored
bumps pychadwick version (#59)
* bumps pychadwick version * pytest version * updates lahman tests
1 parent d7623ba commit 6b95091

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

pybbda/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
logging.basicConfig(format="%(levelname)s:%(name)s:%(module)s:%(message)s")
66
logger = logging.getLogger("pybbda")
77

8-
_version = "0.3.0"
8+
_version = "0.3.1"
99

1010
PYBBDA_LOG_LEVEL_NAME = os.environ.get("PYBBDA_LOG_LEVEL", "")
1111
_PYBBDA_LOG_LEVEL_MAP = {

requirements-dev.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
pytest==5.3.4
1+
pytest>=6.0.0
22
tox==3.14.3
33
setuptools
44
Sphinx==3.0.3

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ requests~=2.22.0
77
scipy~=1.4.1
88
sqlalchemy~=1.3.13
99
tqdm~=4.46.1
10-
pychadwick~=0.4.0
10+
pychadwick~=0.5.0
1111
matplotlib~=3.1.3
1212
seaborn~=0.10.1

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.3.0
2+
current_version = 0.3.1
33

44
[flake8]
55
max-line-length = 90

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ def process_line(line):
1313

1414
setup(
1515
name="pybbda",
16-
version="0.3.0",
16+
version="0.3.1",
1717
author="Ben Dilday",
1818
author_email="[email protected]",
1919
description="Baseball data and analysis in Python",

tests/analysis/simulations/components/test_player_registry.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,4 @@ def test_from_lahman_records():
3838
def test_from_lahman():
3939
player_registry = PlayerRegistry()
4040
player_registry.load_from_lahman(pa_limit=180)
41-
assert player_registry.len == 32646
41+
assert player_registry.len == 32803

tests/data/test_lahman/test_lahman.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ def lahman_data():
88

99

1010
def test_lahman_datadum(lahman_data):
11-
assert len(lahman_data.batting) == 107429
11+
assert len(lahman_data.batting) == 108789
1212

1313

1414
def test_missing_path(lahman_data):

0 commit comments

Comments
 (0)