-
Hi, I just wanted to update some pip packages in the Program I implemented some use cases of the espn_api package and wanted to update this to the current version 0.17.0. Now I got an error during updating the pip package because I don't have VC++ Build tools installed which numpy requires. Because I don't want to install the VC++ Build tools because I just don't need it for anything else and just to update espn_api it's too much. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
The numpy package is used by I want to keep this package light and not have a lot of dependencies. Thanks for bringing this up, I think its a good time to remove the |
Beta Was this translation helpful? Give feedback.
The numpy package is used by
pandas
in two of the hockey classes (Player and Team). However the goal is to take out math and analytic specific logic and leave that up to the user of the package and not require it. This was added in the first implementation of hockey but the data can be derived outside of the package.I want to keep this package light and not have a lot of dependencies. Thanks for bringing this up, I think its a good time to remove the
numpy
andpandas
dependencies.