admin/netdata: Update to 1.9.0
[feed/packages.git] / lang / python / python-txsocksx / patches / 002-do-not-use-vcversioner.patch
1 diff --git a/setup.py b/setup.py
2 index 7979f89..5e1abb3 100644
3 --- a/setup.py
4 +++ b/setup.py
5 @@ -1,6 +1,8 @@
6 # Copyright (c) Aaron Gallagher <_@habnab.it>
7 # See COPYING for details.
8
9 +import os
10 +
11 from setuptools import setup
12
13
14 @@ -30,10 +32,11 @@ setup(
15 ],
16 license='ISC',
17
18 - setup_requires=['vcversioner>=1'],
19 - vcversioner={
20 - 'version_module_paths': ['txsocksx/_version.py'],
21 - },
22 + #setup_requires=['vcversioner>=1'],
23 + #vcversioner={
24 + # 'version_module_paths': ['txsocksx/_version.py'],
25 + #},
26 + version=os.environ.get('PKG_VERSION'),
27 install_requires=install_requires,
28 packages=['txsocksx', 'txsocksx.test'],
29 )