[pyfftw] 01/05: Imported Upstream version 0.10.4+dfsg1
Ghislain Vaillant
ghisvail-guest at moszumanska.debian.org
Sat Jun 11 08:09:24 UTC 2016
This is an automated email from the git hooks/post-receive script.
ghisvail-guest pushed a commit to branch master
in repository pyfftw.
commit cd81d907faf8872e2bba2046e54b74fedab6930d
Author: Ghislain Antony Vaillant <ghisvail at gmail.com>
Date: Tue Jun 7 15:45:53 2016 +0100
Imported Upstream version 0.10.4+dfsg1
---
PKG-INFO | 2 +-
pyFFTW.egg-info/PKG-INFO | 2 +-
setup.py | 55 ++++++++++++++++++++++++------------------------
3 files changed, 30 insertions(+), 29 deletions(-)
diff --git a/PKG-INFO b/PKG-INFO
index 1ebfec0..8a72b7a 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: pyFFTW
-Version: 0.10.3
+Version: 0.10.4
Summary: A pythonic wrapper around FFTW, the FFT library, presenting a unified interface for all the supported transforms.
Home-page: http://hgomersall.github.com/pyFFTW/
Author: Henry Gomersall
diff --git a/pyFFTW.egg-info/PKG-INFO b/pyFFTW.egg-info/PKG-INFO
index 1ebfec0..8a72b7a 100644
--- a/pyFFTW.egg-info/PKG-INFO
+++ b/pyFFTW.egg-info/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: pyFFTW
-Version: 0.10.3
+Version: 0.10.4
Summary: A pythonic wrapper around FFTW, the FFT library, presenting a unified interface for all the supported transforms.
Home-page: http://hgomersall.github.com/pyFFTW/
Author: Henry Gomersall
diff --git a/setup.py b/setup.py
index 8825f4b..404cb38 100644
--- a/setup.py
+++ b/setup.py
@@ -47,36 +47,37 @@ from distutils.ccompiler import get_default_compiler
import os
import sys
-if os.environ.get('TRAVIS_TAG') != '':
- git_tag = os.environ.get('TRAVIS_TAG')
-elif os.environ.get('APPVEYOR_REPO_TAG') == 'True':
- git_tag = os.environ.get('APPVEYOR_REPO_TAG_NAME')
-else:
- git_tag = None
+#if os.environ.get('TRAVIS_TAG') != '':
+# git_tag = os.environ.get('TRAVIS_TAG')
+#elif os.environ.get('APPVEYOR_REPO_TAG_NAME') is not None:
+# git_tag = os.environ.get('APPVEYOR_REPO_TAG_NAME')
+#else:
+# git_tag = None
MAJOR = 0
MINOR = 10
-MICRO = 3
-
-if git_tag is not None:
- # Check the tag is properly formed and in agreement with the
- # expected versio number before declaring a release.
- import re
- version_re = re.compile(r'v[0-9]+\.[0-9]+\.[0-9]+')
- if version_re.match(git_tag) is not None:
- tag_major, tag_minor, tag_micro = [
- int(each) for each in git_tag[1:].split('.')]
-
- assert tag_major == MAJOR
- assert tag_minor == MINOR
- assert tag_micro == MICRO
-
- ISRELEASED = True
- else:
- raise ValueError("Malformed version tag for release")
-
-else:
- ISRELEASED = False
+MICRO = 4
+ISRELEASED = True
+
+#if git_tag is not None:
+# # Check the tag is properly formed and in agreement with the
+# # expected versio number before declaring a release.
+# import re
+# version_re = re.compile(r'v[0-9]+\.[0-9]+\.[0-9]+')
+# if version_re.match(git_tag) is not None:
+# tag_major, tag_minor, tag_micro = [
+# int(each) for each in git_tag[1:].split('.')]
+#
+# assert tag_major == MAJOR
+# assert tag_minor == MINOR
+# assert tag_micro == MICRO
+#
+# ISRELEASED = True
+# else:
+# raise ValueError("Malformed version tag for release")
+#
+#else:
+# ISRELEASED = False
VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/debian-science/packages/pyfftw.git
More information about the debian-science-commits
mailing list