Skip to content

Commit 6a92fcc

Browse files
authored
Update authors (#65)
1 parent f761bca commit 6a92fcc

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed

AUTHORS.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
BioSPPy is written and maintained by the [ScientISST](https://github.com/scientisst) team.
22

3-
Maintainers
3+
Current Maintainers
44
-----------
55

66
- Rafael Silva [@rafaelscsilva](https://github.com/rafaelscsilva)
@@ -10,8 +10,15 @@ Maintainers
1010
Main Contributors
1111
-----------------
1212

13+
- Carlos Carreiras <[email protected]> (Original Development Lead)
14+
15+
- Ana Priscila Alves <[email protected]>
16+
- André Lourenço <[email protected]>
17+
- Filipe Canento <[email protected]>
18+
- Hugo Silva [@hugoslv] <[email protected]>
1319
- Rafael Silva [@rafaelscsilva](https://github.com/rafaelscsilva)
1420
- Sofia Monteiro [@sofia3ms](https://github.com/sofia3ms)
21+
- Afonso Raposo [@afonsocraposo] (https://github.com/afonsocraposo)
1522
- Patrícia Bota [@PatriciaBota](https://github.com/PatriciaBota)
1623
- Afonso Ferreira [@afonsof3rreira](https://github.com/afonsof3rreira)
1724
- Mariana Abreu [@MarianaAbreu](https://github.com/MarianaAbreu)

biosppy/plotting.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
import matplotlib.patches as patches
2525
import matplotlib.lines as lines
2626
import numpy as np
27-
from mock import MagicMock
27+
from unittest.mock import MagicMock
2828

2929
# local
3030
from . import utils

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
sys.path.insert(0, os.path.abspath("../"))
2222

2323
# To be able to import to ReadTheDocs
24-
from mock import Mock as MagicMock
24+
from unittest.mock import Mock as MagicMock
2525

2626

2727
class Mock(MagicMock):
@@ -38,7 +38,7 @@ def __getattr__(cls, name):
3838
'scipy.spatial.distance', 'sklearn', 'sklearn.cluster',
3939
'sklearn.model_selection', 'sklearn.externals',
4040
'matplotlib.gridspec', 'h5py', 'shortuuid', 'bidict', 'svm',
41-
'sksvm','pywt','joblib','scipy.linalg','scipy.integrate','scipy.ndimage']
41+
'sksvm','pywt','joblib','scipy.linalg','scipy.integrate','scipy.ndimage','peakutils']
4242

4343
sys.modules.update((mod_name, Mock()) for mod_name in MOCK_MODULES)
4444

0 commit comments

Comments
 (0)