Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-ora2
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
edx-ora2
Commits
9a4463e2
Commit
9a4463e2
authored
Mar 22, 2017
by
Eric Fischer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
tweaks
parent
b2cc9698
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
6 additions
and
34 deletions
+6
-34
Makefile
+1
-5
requirements/base.txt
+4
-4
requirements/wheels.txt
+0
-8
scripts/install-wheels.sh
+0
-16
setup.py
+1
-1
No files found.
Makefile
View file @
9a4463e2
...
@@ -11,10 +11,6 @@ install-system:
...
@@ -11,10 +11,6 @@ install-system:
install-node
:
install-node
:
sudo
apt-get install
-qq
nodejs
sudo
apt-get install
-qq
nodejs
install-wheels
:
./scripts/install-wheels.sh
install-python
:
install-python
:
./scripts/install-python.sh
./scripts/install-python.sh
...
@@ -47,7 +43,7 @@ install-sys-requirements: install-system install-node
...
@@ -47,7 +43,7 @@ install-sys-requirements: install-system install-node
install-dev
:
install-dev
:
pip install
-q
-r
requirements/dev.txt
pip install
-q
-r
requirements/dev.txt
install
:
install-
wheels install-
python install-js install-nltk-data install-test install-dev javascript sass
install
:
install-python install-js install-nltk-data install-test install-dev javascript sass
quality
:
quality
:
jshint
$(STATIC_JS)
/src
-c
.jshintrc
--verbose
jshint
$(STATIC_JS)
/src
-c
.jshintrc
--verbose
...
...
requirements/base.txt
View file @
9a4463e2
# Include the requirements we're caching as "wheel" archives
# to speed up the test builds.
-r wheels.txt
# edX Internal Requirements
# edX Internal Requirements
git+https://github.com/edx/XBlock.git@xblock-0.4.12#egg=XBlock==0.4.12
git+https://github.com/edx/XBlock.git@xblock-0.4.12#egg=XBlock==0.4.12
...
@@ -22,10 +18,14 @@ jsonfield==1.0.3
...
@@ -22,10 +18,14 @@ jsonfield==1.0.3
lazy==1.1
lazy==1.1
libsass==0.10.0
libsass==0.10.0
loremipsum==1.0.5
loremipsum==1.0.5
lxml==3.7.3
numpy==1.12.1
path.py==8.2.1
path.py==8.2.1
python-dateutil==2.1
python-dateutil==2.1
python-memcached==1.48
python-memcached==1.48
pytz
pytz
scikit-learn==0.18.1
scipy==0.19.0
voluptuous==0.8.5
voluptuous==0.8.5
# AI grading
# AI grading
...
...
requirements/wheels.txt
deleted
100644 → 0
View file @
b2cc9698
# These packages require compilation, so they take a long time to install.
# To speed up the test builds, we create binary "wheel" archives.
# http://pip.readthedocs.org/en/latest/reference/pip_wheel.html
lxml==3.4.4
numpy==1.6.2
scikit-learn==0.12.1
scipy==0.14.0
scripts/install-wheels.sh
deleted
100755 → 0
View file @
b2cc9698
#!/usr/bin/env bash
cd
`
dirname
$BASH_SOURCE
`
&&
cd
..
# Install "wheel" archives of the requirements for running the test suite.
# http://pip.readthedocs.org/en/latest/reference/pip_wheel.html
# This runs in Travis to install pre-built binary packages, which
# means the builds are faster and more reliable.
pip install
--upgrade
pip
pip install wheel
# Ensure that numpy is installed first; otherwise scipy won't be able to install
pip install
--use-wheel
--no-index
--upgrade
numpy
# Then install everything else
pip install
--use-wheel
--no-index
--upgrade
-r
requirements/wheels.txt
setup.py
View file @
9a4463e2
...
@@ -47,7 +47,7 @@ setup(
...
@@ -47,7 +47,7 @@ setup(
],
],
packages
=
find_packages
(
exclude
=
[
'*.test'
,
'*.tests'
]),
packages
=
find_packages
(
exclude
=
[
'*.test'
,
'*.tests'
]),
include_package_data
=
True
,
include_package_data
=
True
,
install_requires
=
load_requirements
(
'requirements/base.txt'
,
'requirements/wheels.txt'
),
install_requires
=
load_requirements
(
'requirements/base.txt'
),
tests_require
=
load_requirements
(
'requirements/test.txt'
),
tests_require
=
load_requirements
(
'requirements/test.txt'
),
entry_points
=
{
entry_points
=
{
'xblock.v1'
:
[
'xblock.v1'
:
[
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment