mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-05 06:50:29 +03:00
Merge branch 'master' into 'master'
let setuptools determine the base install path on OSX This is the last commit from me before the 0.4.0 release. Its ready to go! A gentle reminder: * sign the tag: `git tag -s 0.4.0 -m "tagging release 0.4.0"` * release tags are `0.4.0` format, not `v0.4.0` * change the version in `setup.py` to match the tag exactly, char by char Then I'll post the update to pypi.python.org See merge request !59
This commit is contained in:
commit
01cd81e19b
1 changed files with 2 additions and 2 deletions
4
setup.py
4
setup.py
|
|
@ -3,9 +3,9 @@
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
# workaround issue with easy_install on OSX, where sys.prefix is not an installable location
|
# workaround issue on OSX, where sys.prefix is not an installable location
|
||||||
if sys.platform == 'darwin' and sys.prefix.startswith('/System'):
|
if sys.platform == 'darwin' and sys.prefix.startswith('/System'):
|
||||||
data_prefix = '/Library/Python/2.7/site-packages'
|
data_prefix = '.'
|
||||||
else:
|
else:
|
||||||
data_prefix = sys.prefix
|
data_prefix = sys.prefix
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue