Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix the bug of tensors not on the same device when running on CUDA device #59

Merged
merged 10 commits into from
Apr 19, 2023
Merged
Prev Previous commit
Next Next commit
doc: modify the version from 0.0.10 to 0.0.11;
  • Loading branch information
WenjieDu committed Apr 19, 2023
commit 928d4f6f5568cc5c25334aeac50fe39c48f9022b
3 changes: 1 addition & 2 deletions pypots/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# Created by Wenjie Du <[email protected]>
# License: GPL-v3

from pypots.__version__ import version as __version__
from pypots.version import __version__

__all__ = [
"data",
Expand All @@ -14,5 +14,4 @@
"clustering",
"forecasting",
"utils",
"__version__",
]
2 changes: 1 addition & 1 deletion pypots/__version__.py → pypots/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@
# Dev branch marker is: 'X.Y.dev' or 'X.Y.devN' where N is an integer.
# 'X.Y.dev0' is the canonical version of 'X.Y.dev'

version = "0.0.10"
__version__ = "0.0.11"
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
from setuptools import setup, find_packages

from pypots.__version__ import version
from pypots.version import __version__

with open("./README.md", encoding="utf-8") as f:
README = f.read()

setup(
name="pypots",
version=version,
version=__version__,
description="A Python Toolbox for Data Mining on Partially-Observed Time Series",
long_description=README,
long_description_content_type="text/markdown",
Expand Down