This commit is contained in:
edeymc 2025-11-08 17:06:55 -08:00
parent 92f89290c1
commit d14ed48524
2 changed files with 2 additions and 2 deletions

View file

@ -30,7 +30,7 @@ def find_AWR(performances,AWR=Current_AWR):
.astype({'SportClass':str})
.merge(
(
AWR.astype({'SportClass':str})
AWR
.pipe(lambda df: df[~df.AWR.isin('CAN|NR > 3'.split('|'))])
.pipe(lambda df: df['Gender EventClass Distance Stroke Seconds'.split()])
.rename(columns={'Seconds':'AWR'})

View file

@ -2,7 +2,7 @@ from setuptools import setup, find_packages
setup(
name="ParaUtils",
version="0.1.6.6",
version="0.1.6.7",
packages=find_packages(),
include_package_data=True,
)