diff options
author | Arthur de Jong <arthur@arthurdejong.org> | 2011-03-06 22:56:20 +0100 |
---|---|---|
committer | Arthur de Jong <arthur@arthurdejong.org> | 2011-03-06 22:56:20 +0100 |
commit | 1b904ba0fb81afe38ba41facb9ed8dadebc7d5e2 (patch) | |
tree | 0dfb88361aca0b7a0dd7fec8f56547070f005121 /setup.py | |
parent | a45079ff3127385d49fa11d09ec1cd03f44cff48 (diff) |
also support Python3 with the same codebase (see #3)
git-svn-id: http://arthurdejong.org/svn/python-stdnum/python-stdnum@69 9dea7c4f-944c-4273-ac1a-574ede026edc
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -29,7 +29,7 @@ import stdnum # fix permissions for sdist if 'sdist' in sys.argv: os.system('chmod -R a+rX .') - os.umask(022) + os.umask(int('022', 8)) setup(name='python-stdnum', version='0.4', |