start saving version of library in the checkpoints, so in case of breaking changes, researchers can return to the right working version

This commit is contained in:
Phil Wang
2022-11-28 12:11:11 -08:00
parent ddc31bc489
commit 6ab29d5cea
3 changed files with 11 additions and 2 deletions
+3 -1
View File
@@ -1,9 +1,11 @@
from setuptools import setup, find_packages
exec(open('denoising_diffusion_pytorch/version.py').read())
setup(
name = 'denoising-diffusion-pytorch',
packages = find_packages(),
version = '0.32.0',
version = __version__,
license='MIT',
description = 'Denoising Diffusion Probabilistic Models - Pytorch',
author = 'Phil Wang',