Skip to content

Commit d444dba

Browse files
author
William Bakst
committed
Merge branch 'main' of github.com:ControlAI/pytorch-lattice
2 parents d8b1e4a + a1b67be commit d444dba

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2023 SOTAI Labs Inc.
3+
Copyright (c) 2023 William Bakst.
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

mkdocs.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
copyright: Copyright © 2023 SOTAI Labs Inc.
1+
copyright: Copyright © 2023 William Bakst.
22
site_name: PyTorch Lattice
3-
site_url: https://controlai.github.io/pytorch-lattice
3+
site_url: https://willbakst.github.io/pytorch-lattice
44
repo_name: pytorch-lattice
5-
repo_url: https://github.com/ControlAI/pytorch-lattice/
5+
repo_url: https://github.com/willbakst/pytorch-lattice/
66
theme:
77
name: material
88
icon:
@@ -39,7 +39,7 @@ theme:
3939
extra:
4040
social:
4141
- icon: fontawesome/brands/github-alt
42-
link: https://github.com/ControlAI
42+
link: https://github.com/willbakst
4343
- icon: fontawesome/brands/twitter
4444
link: https://twitter.com/WilliamBakst
4545
- icon: fontawesome/brands/linkedin

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[tool.poetry]
22
name = "pytorch-lattice"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
description = "A PyTorch Implementation Of Lattice Modeling Techniques"
55
license = "MIT"
6-
authors = ["William Bakst <[email protected]>"]
6+
authors = ["William Bakst <[email protected]>"]
77
readme = "docs/README.md"
88
packages = [{ include = "pytorch_lattice" }]
9-
repository = "https://github.com/ControlAI/pytorch-lattice"
9+
repository = "https://github.com/willbakst/pytorch-lattice"
1010

1111
[tool.poetry.dependencies]
1212
python = ">=3.9, <=3.12"

pytorch_lattice/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# This version must always be one version ahead of the current release, so it
44
# matches the current state of development, which will always be ahead of the
55
# current release. Use Semantic Versioning.
6-
__version__ = "0.1.0"
6+
__version__ = "0.2.0"
77

88
from . import datasets, plots, utils
99
from .classifier import Classifier

0 commit comments

Comments
 (0)