A fix to vak logging required removing the parameter logger from the from_config method, which is a breaking change.
For that reason a new version was released, 0.6.0.
Using the current TweetyNet version with vak 0.6.0 will raise an error because TweetyNetModel will try to pass in the logger parameter as an argument when it initializes the class.
Need to:
[ ] remove the logger argument that TweetyNetModel.from_config passes into cls, and from the signature of the classmethod itself
[ ] need to raise the upper bound on vak to 0.6.0
[ ] then release a new TweetyNet version. I guess 0.8.0 :shrug: since we also make a "breaking" change to TweetyNetModel, on the off chance someone is using ijt programatically
A fix to
vak
logging required removing the parameterlogger
from thefrom_config
method, which is a breaking change. For that reason a new version was released, 0.6.0.Using the current TweetyNet version with vak 0.6.0 will raise an error because TweetyNetModel will try to pass in the logger parameter as an argument when it initializes the class.
Need to:
logger
argument thatTweetyNetModel.from_config
passes intocls
, and from the signature of the classmethod itselfvak
to 0.6.0