From b002e8c31b9869f377151ea5036098a9e777ef93 Mon Sep 17 00:00:00 2001 From: Karl Kroening Date: Thu, 15 Jun 2017 23:13:03 -0600 Subject: [PATCH] Update setup.py --- .python-version | 3 +++ setup.py | 14 +++----------- 2 files changed, 6 insertions(+), 11 deletions(-) diff --git a/.python-version b/.python-version index e2d8f77..f4c63ed 100644 --- a/.python-version +++ b/.python-version @@ -1,5 +1,8 @@ +2.6.9 +2.7.12 3.3.6 3.4.6 3.5.3 3.6.1 +pypy-5.7.0 jython-2.7.0 diff --git a/setup.py b/setup.py index 5953cec..409be5a 100644 --- a/setup.py +++ b/setup.py @@ -2,12 +2,8 @@ from setuptools import setup from textwrap import dedent import subprocess - -def get_current_commit_hash(): - p = subprocess.Popen(['git', 'rev-parse', 'HEAD'], stdout=subprocess.PIPE, stderr=subprocess.PIPE) - commit_hash = p.communicate()[0].strip() - return commit_hash - +version = '0.1.6' +download_url = 'https://github.com/kkroening/ffmpeg-python/archive/v{}.zip'.format(version) long_description = dedent("""\ ffmpeg-python: Python bindings for FFmpeg @@ -18,10 +14,6 @@ long_description = dedent("""\ """) - -commit_hash = get_current_commit_hash() -download_url = 'https://github.com/kkroening/ffmpeg-python/archive/{}.zip'.format(commit_hash) - file_formats = [ 'aac', 'ac3', @@ -67,7 +59,7 @@ setup( packages=['ffmpeg'], setup_requires=['pytest-runner'], tests_require=['pytest'], - version='0.1.6', + version=version, description='Python bindings for FFmpeg - with support for complex filtering', author='Karl Kroening', author_email='karlk@kralnet.us',