Merge pull request #1341 from coreos-inc/fix-osx-install
Fix OSX install
This commit is contained in:
commit
2d4337ef82
3 changed files with 16 additions and 6 deletions
10
README.md
10
README.md
|
@ -62,3 +62,13 @@ Now run the server; it will use sqlite as the SQL server.
|
||||||
|
|
||||||
Now quay will be running on: http://127.0.0.1:5000
|
Now quay will be running on: http://127.0.0.1:5000
|
||||||
The username is `devtable` and the password is `password`.
|
The username is `devtable` and the password is `password`.
|
||||||
|
|
||||||
|
Some packages may fail to build with clang (which now defaults to C11).
|
||||||
|
They can be installed with C99 with:
|
||||||
|
|
||||||
|
```
|
||||||
|
CFLAGS='-std=c99' pip install --no-cache --no-binary :all: gevent
|
||||||
|
CFLAGS='-std=c99' pip install --no-cache --no-binary :all: cffi
|
||||||
|
CFLAGS='-std=c99' pip install --no-cache --no-binary :all: cryptography
|
||||||
|
```
|
||||||
|
|
||||||
|
|
|
@ -60,6 +60,6 @@ bintrees
|
||||||
redlock
|
redlock
|
||||||
semantic-version
|
semantic-version
|
||||||
bencode
|
bencode
|
||||||
cryptography==1.1.2 # Remove version when https://github.com/pyca/cryptography/issues/2690 fixed
|
cryptography
|
||||||
httmock
|
httmock
|
||||||
moto
|
moto
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
aiowsgi==0.5
|
aiowsgi==0.5
|
||||||
alembic==0.8.4
|
alembic==0.8.4
|
||||||
APScheduler==3.0.5
|
APScheduler==3.0.5
|
||||||
autobahn==0.9.3-3
|
autobahn==0.9.3.post3
|
||||||
Babel==2.2.0
|
Babel==2.2.0
|
||||||
beautifulsoup4==4.4.1
|
beautifulsoup4==4.4.1
|
||||||
bencode==1.0
|
bencode==1.0
|
||||||
|
@ -9,9 +9,9 @@ bintrees==2.0.4
|
||||||
blinker==1.4
|
blinker==1.4
|
||||||
boto==2.39.0
|
boto==2.39.0
|
||||||
cachetools==1.1.5
|
cachetools==1.1.5
|
||||||
cffi==1.5.0
|
cffi==1.5.2
|
||||||
contextlib2==0.5.1
|
contextlib2==0.5.1
|
||||||
cryptography==1.1.2
|
cryptography==1.3.1
|
||||||
debtcollector==1.2.0
|
debtcollector==1.2.0
|
||||||
decorator==4.0.6
|
decorator==4.0.6
|
||||||
enum34==1.1.2
|
enum34==1.1.2
|
||||||
|
@ -23,10 +23,10 @@ Flask-RESTful==0.2.12
|
||||||
Flask-Testing==0.4.2
|
Flask-Testing==0.4.2
|
||||||
funcparserlib==0.3.6
|
funcparserlib==0.3.6
|
||||||
funcsigs==0.4
|
funcsigs==0.4
|
||||||
functools32==3.2.3-2
|
functools32==3.2.3.post2
|
||||||
future==0.15.2
|
future==0.15.2
|
||||||
futures==3.0.4
|
futures==3.0.4
|
||||||
gevent==1.0.2
|
gevent==1.1.1
|
||||||
gipc==0.6.0
|
gipc==0.6.0
|
||||||
greenlet==0.4.9
|
greenlet==0.4.9
|
||||||
gunicorn==18.0
|
gunicorn==18.0
|
||||||
|
|
Reference in a new issue