Skip to content

Commit

Permalink
Merge branch 'main' into batch_transfer_update
Browse files Browse the repository at this point in the history
  • Loading branch information
dfulu committed Dec 21, 2023
2 parents 63f1711 + 0de6f9f commit de08431
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[bumpversion]
commit = True
tag = True
current_version = 2.6.2
current_version = 2.6.3
message = Bump version: {current_version} → {new_version} [skip ci]

[bumpversion:file:pvnet/__init__.py]
Expand Down
2 changes: 1 addition & 1 deletion pvnet/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
"""PVNet"""
__version__ = "2.6.2"
__version__ = "2.6.3"
6 changes: 6 additions & 0 deletions tests/test_end2end.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import lightning


def test_model_trainer_fit(multimodal_model, sample_train_val_datamodule):
trainer = lightning.pytorch.trainer.trainer.Trainer(fast_dev_run=True)
trainer.fit(model=multimodal_model, datamodule=sample_train_val_datamodule)

0 comments on commit de08431

Please sign in to comment.