From 0a428d2dedaab9922de7b367904357f6ffb48304 Mon Sep 17 00:00:00 2001 From: Andrew Montanez Date: Tue, 10 Jan 2023 14:15:58 -0800 Subject: [PATCH 1/6] v0.4.0 Release Notes (#68) --- HISTORY.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/HISTORY.md b/HISTORY.md index 2dc58c7..2266077 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,5 +1,14 @@ # History +## 0.4.0 - 2023-01-10 + +This release adds support for python 3.10 and 3.11. It also drops support for python 3.6. + +### Maintenance + +* Support Python 3.10 and 3.11 - Issue [#63](https://github.com/sdv-dev/DeepEcho/issues/63) by @pvk-developer +* DeepEcho Package Maintenance Updates - Issue [#62](https://github.com/sdv-dev/DeepEcho/issues/62) by @pvk-developer + ## 0.3.0 - 2021-11-15 This release adds support for Python 3.9 and updates dependencies to ensure compatibility with the rest From 9890bffe649cb5ad3c806de5fdd694ae86bdc934 Mon Sep 17 00:00:00 2001 From: Andrew Montanez Date: Tue, 10 Jan 2023 16:51:22 -0600 Subject: [PATCH 2/6] =?UTF-8?q?Bump=20version:=200.4.0=20=E2=86=92=200.4.1?= =?UTF-8?q?.dev0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- deepecho/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/deepecho/__init__.py b/deepecho/__init__.py index a0069a9..22b04de 100644 --- a/deepecho/__init__.py +++ b/deepecho/__init__.py @@ -2,7 +2,7 @@ __author__ = 'DataCebo, Inc.' __email__ = 'info@sdv.dev' -__version__ = '0.4.0' +__version__ = '0.4.1.dev0' __path__ = __import__('pkgutil').extend_path(__path__, __name__) from deepecho.demo import load_demo diff --git a/setup.cfg b/setup.cfg index cf80ce0..4f84fe5 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.4.0 +current_version = 0.4.1.dev0 commit = True tag = True parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\.(?P[a-z]+)(?P\d+))? diff --git a/setup.py b/setup.py index eea80e2..881d7a6 100644 --- a/setup.py +++ b/setup.py @@ -110,6 +110,6 @@ test_suite='tests', tests_require=tests_require, url='https://github.com/sdv-dev/DeepEcho', - version='0.4.0', + version='0.4.1.dev0', zip_safe=False, ) From 3e4339ff1e72fd4be6a348485f6bf96d92da19b1 Mon Sep 17 00:00:00 2001 From: Frances Hartwell Date: Thu, 27 Apr 2023 13:52:32 -0400 Subject: [PATCH 3/6] Unpin Torch requirement (#71) * upgrade torch requirement * unpin torch --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 881d7a6..640b724 100644 --- a/setup.py +++ b/setup.py @@ -16,8 +16,8 @@ "numpy>=1.23.3,<2;python_version>='3.10'", "pandas>=1.1.3,<2;python_version<'3.10'", "pandas>=1.3.4,<2;python_version>='3.10'", - "torch>=1.8.0,<2;python_version<'3.10'", - "torch>=1.11.0,<2;python_version>='3.10'", + "torch>=1.8.0;python_version<'3.10'", + "torch>=1.11.0;python_version>='3.10'", 'tqdm>=4.15,<5', ] From e160751e72fbfbf5ee17dc306f0ad1e765a869a5 Mon Sep 17 00:00:00 2001 From: Frances Hartwell Date: Fri, 28 Apr 2023 09:38:30 -0400 Subject: [PATCH 4/6] Unpin pandas (#72) * unpin pandas * fix --- deepecho/models/base.py | 2 +- setup.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/deepecho/models/base.py b/deepecho/models/base.py index cd16926..fa44058 100644 --- a/deepecho/models/base.py +++ b/deepecho/models/base.py @@ -248,6 +248,6 @@ def sample(self, num_entities=None, context=None, sequence_length=None): for column, value in zip(self._context_columns, context_values): group[column] = value - output = output.append(group) + output = pd.concat([output, group]) return output[self._output_columns].reset_index(drop=True) diff --git a/setup.py b/setup.py index 640b724..83fd4dc 100644 --- a/setup.py +++ b/setup.py @@ -14,8 +14,8 @@ install_requires = [ "numpy>=1.20.0,<2;python_version<'3.10'", "numpy>=1.23.3,<2;python_version>='3.10'", - "pandas>=1.1.3,<2;python_version<'3.10'", - "pandas>=1.3.4,<2;python_version>='3.10'", + "pandas>=1.1.3;python_version<'3.10'", + "pandas>=1.3.4;python_version>='3.10'", "torch>=1.8.0;python_version<'3.10'", "torch>=1.11.0;python_version>='3.10'", 'tqdm>=4.15,<5', From 00335901e862d562d1a22ebb3f6e65a942a360f1 Mon Sep 17 00:00:00 2001 From: Andrew Montanez Date: Mon, 1 May 2023 18:19:59 -0500 Subject: [PATCH 5/6] =?UTF-8?q?Bump=20version:=200.4.1.dev0=20=E2=86=92=20?= =?UTF-8?q?0.4.1.dev1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- deepecho/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/deepecho/__init__.py b/deepecho/__init__.py index 22b04de..461f883 100644 --- a/deepecho/__init__.py +++ b/deepecho/__init__.py @@ -2,7 +2,7 @@ __author__ = 'DataCebo, Inc.' __email__ = 'info@sdv.dev' -__version__ = '0.4.1.dev0' +__version__ = '0.4.1.dev1' __path__ = __import__('pkgutil').extend_path(__path__, __name__) from deepecho.demo import load_demo diff --git a/setup.cfg b/setup.cfg index 4f84fe5..26c6464 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.4.1.dev0 +current_version = 0.4.1.dev1 commit = True tag = True parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\.(?P[a-z]+)(?P\d+))? diff --git a/setup.py b/setup.py index 83fd4dc..8327964 100644 --- a/setup.py +++ b/setup.py @@ -110,6 +110,6 @@ test_suite='tests', tests_require=tests_require, url='https://github.com/sdv-dev/DeepEcho', - version='0.4.1.dev0', + version='0.4.1.dev1', zip_safe=False, ) From d778951b99ad0906763f7b31607312494f07865f Mon Sep 17 00:00:00 2001 From: Andrew Montanez Date: Tue, 2 May 2023 11:33:37 -0500 Subject: [PATCH 6/6] 0.4.1 Release Notes (#73) --- HISTORY.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/HISTORY.md b/HISTORY.md index 2266077..5eb9616 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,5 +1,14 @@ # History +## 0.4.1 - 2023-05-02 + +This release adds support for Pandas 2.0 and PyTorch 2.0! + +### Maintenance + +* Remove upper bound for pandas - Issue [#69](https://github.com/sdv-dev/DeepEcho/issues/69) by @frances-h +* Upgrade to Torch 2.0 - Issue [#70](https://github.com/sdv-dev/DeepEcho/issues/70) by @frances-h + ## 0.4.0 - 2023-01-10 This release adds support for python 3.10 and 3.11. It also drops support for python 3.6.