1515 fail-fast : false
1616 matrix :
1717 os : ["ubuntu-latest", "macos-latest", "windows-latest"]
18- python-version : [3.7, 3.9]
18+ python-version : ["3.8", " 3.9" ]
1919 steps :
2020 - uses : actions/checkout@v2
2121 - name : Set up Python ${{ matrix.python-version }}
@@ -25,13 +25,13 @@ jobs:
2525 - name : Install dependencies
2626 run : |
2727 pip install --pre torch -f https://download.pytorch.org/whl/nightly/cpu/torch_nightly.html
28- pip install " gpytorch==1.8.1"
28+ pip install git+https://github.com/cornellius-gp/ gpytorch.git
2929 pip install .[test]
3030 - name : Unit tests and coverage
3131 run : |
3232 pytest -ra --cov=. --cov-report term-missing
3333 - name : Upload coverage
34- if : ${{ runner.os == 'Linux' && matrix.python-version == 3.7 }}
34+ if : ${{ runner.os == 'Linux' && matrix.python-version == 3.8 }}
3535 run : |
3636 bash <(curl -s https://codecov.io/bash)
3737
@@ -47,11 +47,11 @@ jobs:
4747 - name : Set up Python
4848 uses : actions/setup-python@v2
4949 with :
50- python-version : 3.7
50+ python-version : 3.8
5151 - name : Install dependencies
5252 run : |
5353 pip install --pre torch -f https://download.pytorch.org/whl/nightly/cpu/torch_nightly.html
54- pip install " gpytorch==1.8.1"
54+ pip install git+https://github.com/cornellius-gp/ gpytorch.git
5555 pip install .[test]
5656 pip install --upgrade build setuptools setuptools_scm wheel
5757 - name : Extract reduced version and save to env var
8686 with :
8787 miniconda-version : " latest"
8888 activate-environment : test
89- python-version : " 3.7 "
89+ python-version : " 3.8 "
9090 - name : Fetch all history for all tags and branches
9191 run : git fetch --prune --unshallow
9292 - name : Install dependencies
9898 conda config --set anaconda_upload no
9999 conda install -y -c pytorch-nightly pytorch cpuonly
100100 conda install -y -c conda-forge pyro-ppl>=1.8.0
101- pip install " gpytorch==1.8.1"
101+ pip install git+https://github.com/cornellius-gp/ gpytorch.git
102102 - name : Build and verify conda package
103103 shell : bash -l {0}
104104 run : |
@@ -115,12 +115,12 @@ jobs:
115115 - name : Set up Python
116116 uses : actions/setup-python@v2
117117 with :
118- python-version : 3.7
118+ python-version : 3.8
119119 - name : Fetch all history for all tags and branches
120120 run : git fetch --prune --unshallow
121121 - name : Install dependencies
122122 run : |
123- pip install " gpytorch==1.8.1"
123+ pip install git+https://github.com/cornellius-gp/ gpytorch.git
124124 pip install .[dev]
125125 pip install git+https://github.com/facebook/Ax.git
126126 # NOTE: nbconvert 6.4.4 is incompatible with jinja2 3.1.0.
0 commit comments