Skip to content

Commit 3d883f1

Browse files
authored
Merge pull request #40 from TomSlater/master
Update version (0.4.0)
2 parents e434bd3 + 98c4cae commit 3d883f1

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

ParticleSpy/ParticleAnalysis.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ def ParticleAnalysis(acquisition,parameters,particles=None,mask=np.zeros((1))):
5858
#morphology.remove_small_objects(labeled,30,in_place=True)
5959
elif mask.sum()==0:
6060
labeled = process(image,parameters)
61-
plt.imshow(labeled)
61+
#plt.imshow(labeled)
6262
#labels = np.unique(labeled).tolist() #some labeled number have been removed by "remove_small_holes" function
6363
else:
6464
labeled = label(mask)

docs/conf.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,13 @@
2020
# -- Project information -----------------------------------------------------
2121

2222
project = 'ParticleSpy'
23-
copyright = '2019, ePSIC'
23+
copyright = '2020, ePSIC'
2424
author = 'ePSIC'
2525

2626
# The short X.Y version
27-
version = '0.2.0'
27+
version = '0.4.0'
2828
# The full version, including alpha/beta/rc tags
29-
release = '0.2.0'
29+
release = '0.4.0'
3030

3131

3232
# -- General configuration ---------------------------------------------------

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@
1919
setuptools.setup(
2020
name="particlespy",
2121
package_dir={'particlespy':'particlespy'},
22-
version="0.3.0",
22+
version="0.4.0",
2323
author="Thomas Slater",
2424
author_email="tjaslater@gmail.com",
2525
description="A package to perform particle segmentation and analysis",
2626
long_description=long_description,
2727
long_description_content_type="text/markdown",
28-
url="https://github.com/ePSIC-DLS/ParticleSpy",
28+
url="https://github.com/ePSIC-DLS/particlespy",
2929
packages=setuptools.find_packages(),
3030
install_requires=install_requires,
3131
include_package_data=True,

0 commit comments

Comments
 (0)