Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
bilby
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Sylvia Biscoveanu
bilby
Commits
d209c3f2
Commit
d209c3f2
authored
6 years ago
by
Moritz Huebner
Committed by
Colm Talbot
6 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Resolve "Introduce a dependency manager"
parent
52aa3a58
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
.gitlab-ci.yml
+8
-6
8 additions, 6 deletions
.gitlab-ci.yml
CHANGELOG.md
+1
-0
1 addition, 0 deletions
CHANGELOG.md
Pipfile
+33
-0
33 additions, 0 deletions
Pipfile
Pipfile.lock
+621
-0
621 additions, 0 deletions
Pipfile.lock
with
663 additions
and
6 deletions
.gitlab-ci.yml
+
8
−
6
View file @
d209c3f2
...
...
@@ -18,12 +18,13 @@ python-2:
stage
:
test
image
:
continuumio/anaconda
before_script
:
-
apt-get update
-
apt-get update
-y
-
apt-get install gcc -y
-
apt install -y libgl1-mesa-glx
-
pip install
-r requirements.txt
-
pip install
-r optional_requirements.txt
-
pip install
pip --upgrade
-
pip install
pipenv
-
pip install enum
-
pipenv install --two --python=/opt/conda/bin/python2 --system --deploy
script
:
-
python setup.py install
# Run tests without finding coverage
...
...
@@ -34,15 +35,16 @@ python-3:
stage
:
test
image
:
continuumio/anaconda3
before_script
:
-
apt-get update
-
apt-get update
-y
-
apt-get install gcc -y
-
apt install -y libgl1-mesa-glx
-
pip install -r requirements.txt
-
pip install -r optional_requirements.txt
-
pip install pip --upgrade
-
pip install 'coverage>=4.5'
-
pip install coverage-badge
-
pip install flake8
-
pip install pytest-cov
-
pip install pipenv
-
pipenv install --three --python=/opt/conda/bin/python --system --deploy
script
:
-
python setup.py install
...
...
This diff is collapsed.
Click to expand it.
CHANGELOG.md
+
1
−
0
View file @
d209c3f2
...
...
@@ -18,6 +18,7 @@ Changes currently on master, but not under a tag.
-
Adds custom titles to corner plots
-
Adds plotting of the prior on 1D marginal distributions of corner plots
-
Adds a method to plot time-domain GW data
-
Added pipenv as a dependency manager
-
Hyperparameter estimation now enables the user to provide the single event evidences
-
Add nested samples to nestle output
-
Prior and child classes now implement the
\_\_
eq
\_\_
magic method for comparisons
...
...
This diff is collapsed.
Click to expand it.
Pipfile
0 → 100644
+
33
−
0
View file @
d209c3f2
[[source]]
url
=
"https://pypi.org/simple"
verify_ssl
=
true
name
=
"pypi"
[packages]
future
=
"*"
corner
=
"*"
numpy
=
">
=
1.9
"
matplotlib
=
"<3"
scipy
=
">
=
0.16
"
pandas
=
"*"
deepdish
=
"*"
mock
=
"*"
astropy
=
"<3"
gwpy
=
"*"
theano
=
"*"
lalsuite
=
"*"
# cpnest = "*"
dynesty
=
"*"
emcee
=
"*"
nestle
=
"*"
ptemcee
=
"*"
pymc3
=
"*"
pymultinest
=
"*"
[requires]
[dev-packages]
[pipenv]
allow_prereleases
=
false
This diff is collapsed.
Click to expand it.
Pipfile.lock
0 → 100644
+
621
−
0
View file @
d209c3f2
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment