SmallGiraffe94 You should use dataset_version=2022-09-07
(not version=...
). This should work for your use-case.Dataset.get
shouldn't actually accept a version
kwarg, but it does because it accepts some **kwargs
used internally. We will make sure to warn the users in case they pass values to **kwargs
from now on.
Anyway, this issue still exists, but in another form:Dataset.get
can't get datasets with a non-semantic version, unless the version is specified using the dataset_version
argument Users can't create new datasets if a dataset with a non-semantic version exists in the project (unless dataset_version
is specified) Users can't change the dataset versionWe will make sure to address these issues (hopefully by the next release).
Thank you! 😁