Skip to content

Commit f8b05b2

Browse files
committed
make release-tag: Merge branch 'master' into stable
2 parents b15b1b5 + d778951 commit f8b05b2

File tree

5 files changed

+26
-8
lines changed

5 files changed

+26
-8
lines changed

HISTORY.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
11
# History
22

3+
## 0.4.1 - 2023-05-02
4+
5+
This release adds support for Pandas 2.0 and PyTorch 2.0!
6+
7+
### Maintenance
8+
9+
* Remove upper bound for pandas - Issue [#69](https://github.com/sdv-dev/DeepEcho/issues/69) by @frances-h
10+
* Upgrade to Torch 2.0 - Issue [#70](https://github.com/sdv-dev/DeepEcho/issues/70) by @frances-h
11+
12+
## 0.4.0 - 2023-01-10
13+
14+
This release adds support for python 3.10 and 3.11. It also drops support for python 3.6.
15+
16+
### Maintenance
17+
18+
* Support Python 3.10 and 3.11 - Issue [#63](https://github.com/sdv-dev/DeepEcho/issues/63) by @pvk-developer
19+
* DeepEcho Package Maintenance Updates - Issue [#62](https://github.com/sdv-dev/DeepEcho/issues/62) by @pvk-developer
20+
321
## 0.3.0 - 2021-11-15
422

523
This release adds support for Python 3.9 and updates dependencies to ensure compatibility with the rest

deepecho/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
__author__ = 'DataCebo, Inc.'
44
__email__ = '[email protected]'
5-
__version__ = '0.4.0'
5+
__version__ = '0.4.1.dev1'
66
__path__ = __import__('pkgutil').extend_path(__path__, __name__)
77

88
from deepecho.demo import load_demo

deepecho/models/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -248,6 +248,6 @@ def sample(self, num_entities=None, context=None, sequence_length=None):
248248
for column, value in zip(self._context_columns, context_values):
249249
group[column] = value
250250

251-
output = output.append(group)
251+
output = pd.concat([output, group])
252252

253253
return output[self._output_columns].reset_index(drop=True)

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.4.0
2+
current_version = 0.4.1.dev1
33
commit = True
44
tag = True
55
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\.(?P<release>[a-z]+)(?P<candidate>\d+))?

setup.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@
1414
install_requires = [
1515
"numpy>=1.20.0,<2;python_version<'3.10'",
1616
"numpy>=1.23.3,<2;python_version>='3.10'",
17-
"pandas>=1.1.3,<2;python_version<'3.10'",
18-
"pandas>=1.3.4,<2;python_version>='3.10'",
19-
"torch>=1.8.0,<2;python_version<'3.10'",
20-
"torch>=1.11.0,<2;python_version>='3.10'",
17+
"pandas>=1.1.3;python_version<'3.10'",
18+
"pandas>=1.3.4;python_version>='3.10'",
19+
"torch>=1.8.0;python_version<'3.10'",
20+
"torch>=1.11.0;python_version>='3.10'",
2121
'tqdm>=4.15,<5',
2222
]
2323

@@ -110,6 +110,6 @@
110110
test_suite='tests',
111111
tests_require=tests_require,
112112
url='https://github.com/sdv-dev/DeepEcho',
113-
version='0.4.0',
113+
version='0.4.1.dev1',
114114
zip_safe=False,
115115
)

0 commit comments

Comments
 (0)