File tree 4 files changed +10
-42
lines changed
4 files changed +10
-42
lines changed Original file line number Diff line number Diff line change 23
23
python -m pip install --upgrade pip
24
24
pip install .
25
25
pip install -r requirements-jax.txt
26
- less requirements-dev .txt | grep 'pytest\|chex' | xargs -i -t pip install {}
26
+ less requirements.txt | grep 'pytest\|chex' | xargs -i -t pip install {}
27
27
- name : Run the tests with pytest
28
28
run : |
29
29
pytest -n 4 -vv -m "not benchmark" --cov=blackjax --cov-report=xml --cov-report=term tests
51
51
python -m pip install --upgrade pip
52
52
pip install .
53
53
pip install -r requirements-jax.txt
54
- less requirements-dev .txt | grep 'pytest\|chex' | xargs -i -t pip install {}
54
+ less requirements.txt | grep 'pytest\|chex' | xargs -i -t pip install {}
55
55
- name : Run the benchmarks with pytest-benchmark
56
56
run : |
57
57
pytest -n 4 -vv -m benchmark --cov=blackjax --cov-report=xml --cov-report=term tests
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ -e ./
2
+ pre-commit
3
+ pytest
4
+ pytest-benchmark
5
+ pytest-cov
6
+ pytest-xdist
7
+ chex
Original file line number Diff line number Diff line change @@ -37,16 +37,14 @@ def get_version(rel_path):
37
37
raise RuntimeError ("Unable to find version string." )
38
38
39
39
40
- INSTALL_REQS = read ("requirements.txt" ).splitlines ()
41
-
42
40
setuptools .setup (
43
41
name = "blackjax" ,
44
42
author = "The BlackJAX team" ,
45
43
version = get_version ("blackjax/__init__.py" ),
46
44
description = "Flexible and fast inference in Python" ,
47
45
long_description = long_description ,
48
46
packages = setuptools .find_packages (),
49
- install_requires = INSTALL_REQS ,
47
+ install_requires = [] ,
50
48
long_description_content_type = "text/markdown" ,
51
49
keywords = "probabilistic machine learning bayesian statistics sampling algorithms" ,
52
50
license = "Apache License 2.0" ,
You can’t perform that action at this time.
0 commit comments