From 03edf2579571861413b510f8b6d8ec0ad883a13f Mon Sep 17 00:00:00 2001 From: "Brandon T. Willard" Date: Wed, 2 Jun 2021 00:38:11 -0500 Subject: [PATCH] Temporary requirements changes for testing Do not merge this! --- .github/workflows/python-tests.yml | 2 -- setup.py | 4 +++- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/python-tests.yml b/.github/workflows/python-tests.yml index 057a109..ed38ce5 100644 --- a/.github/workflows/python-tests.yml +++ b/.github/workflows/python-tests.yml @@ -48,7 +48,6 @@ jobs: strategy: matrix: python-version: [3.7] - pymc3-version: [stable, dev] steps: - uses: actions/checkout@v2 @@ -61,7 +60,6 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - if [[ "${{ matrix.pymc3-version }}" != "stable" ]]; then pip install "pymc3 @ git+https://github.com/pymc-devs/pymc3.git@master"; fi if [ -f requirements.txt ]; then pip install -r requirements.txt; fi - name: Test with pytest run: | diff --git a/setup.py b/setup.py index 5a1b3a4..cfd6474 100644 --- a/setup.py +++ b/setup.py @@ -17,7 +17,9 @@ install_requires=[ "numpy>=1.18.1", "scipy>=1.4.0", - "pymc3>=4.0.0", + # XXX TODO: These are temporary and only for testing. + # "pymc3>=4.0.0", + "pymc3 @ git+https://github.com/brandonwillard/pymc3.git@main#egg=pymc3-4.0.0", # noqa: E501 "aesara>=2.0.10", ], tests_require=["pytest"],