From e596cf0715211266712768dbf51d4b2edd543776 Mon Sep 17 00:00:00 2001 From: Scott Sibole Date: Tue, 7 Nov 2017 16:34:32 -0700 Subject: [PATCH] Replaced version 1.2. Will no longer support Python 2 on linux or windows. --- src/conda-recipe/conda_build_config.yaml | 1 - src/conda-recipe/meta.yaml | 4 ++-- src/setup.py | 2 +- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/src/conda-recipe/conda_build_config.yaml b/src/conda-recipe/conda_build_config.yaml index 2dbf91a..1f142c3 100644 --- a/src/conda-recipe/conda_build_config.yaml +++ b/src/conda-recipe/conda_build_config.yaml @@ -1,4 +1,3 @@ python: - - 2.7 [not win] - 3.5 - 3.6 diff --git a/src/conda-recipe/meta.yaml b/src/conda-recipe/meta.yaml index 0596022..a639f29 100644 --- a/src/conda-recipe/meta.yaml +++ b/src/conda-recipe/meta.yaml @@ -1,10 +1,10 @@ package: name: pycellanalyst - version: 1.3 + version: 1.2 source: git_url: https://github.com/siboles/pyCellAnalyst.git - git_rev: 1.3 + git_rev: 1.2 requirements: build: diff --git a/src/setup.py b/src/setup.py index 6212367..64d42c0 100644 --- a/src/setup.py +++ b/src/setup.py @@ -12,7 +12,7 @@ def is_pure(self): return False setup( name = 'pyCellAnalyst', - version = '1.3', + version = '1.2', description = 'An extensive module for image processing, segmentation, and deformation analysis. Initially aimed at processing 3-D microscopy of cells, this may have applications for other data types as well.', packages = ['pyCellAnalyst'], long_description = long_description,