Skip to content

Commit 8bda2a6

Browse files
Update to new name for dependency from -> .
1 parent a9027f2 commit 8bda2a6

File tree

5 files changed

+8
-6
lines changed

5 files changed

+8
-6
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
## Release notes
22

3-
### 0.13.2 -- TBD
3+
### 0.13.2 -- Apr 23, 2021
4+
* Update `setuptools_certificate` dependency to new name `otumat`
45
* Bugfix - Explicit calls to `dj.Connection` throw error due to missing `host_input` (#895) PR #907
56

67
### 0.13.1 -- Apr 16, 2021

datajoint/plugin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import pkg_resources
33
from pathlib import Path
44
from cryptography.exceptions import InvalidSignature
5-
from setuptools_certificate import hash_pkg, verify
5+
from otumat import hash_pkg, verify
66

77

88
def _update_error_stack(plugin_name):

docs-parts/intro/Releases_lang1.rst

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
0.13.2 -- TBD
2-
-------------
1+
0.13.2 -- Apr 23, 2021
2+
----------------------
3+
* Update `setuptools_certificate` dependency to new name `otumat`
34
* Bugfix - Explicit calls to `dj.Connection` throw error due to missing `host_input` (#895) PR #907
45

56
0.13.1 -- Apr 16, 2021

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ pydot
99
minio>=7.0.0
1010
matplotlib
1111
cryptography
12-
setuptools_certificate
12+
otumat

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,6 @@
3232
packages=find_packages(exclude=['contrib', 'docs', 'tests*']),
3333
install_requires=requirements,
3434
python_requires='~={}.{}'.format(*min_py_version),
35-
setup_requires=['setuptools_certificate'], # maybe remove due to conflicts?
35+
setup_requires=['otumat'], # maybe remove due to conflicts?
3636
pubkey_path='./datajoint.pub'
3737
)

0 commit comments

Comments
 (0)