Skip to content

Commit

Permalink
Temporary requirements changes for testing
Browse files Browse the repository at this point in the history
Do not merge this!
  • Loading branch information
brandonwillard committed Jun 2, 2021
1 parent 7d78064 commit 5ddd880
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/python-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ jobs:
strategy:
matrix:
python-version: [3.7]
pymc3-version: [stable, dev]

steps:
- uses: actions/checkout@v2
Expand All @@ -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: |
Expand Down
7 changes: 5 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,11 @@
install_requires=[
"numpy>=1.18.1",
"scipy>=1.4.0",
"pymc3>=4.0.0",
"aesara>=2.0.10",
# XXX TODO: These are temporary and only for testing.
# "pymc3>=4.0.0",
"pymc3 @ git+https://github.com/brandonwillard/pymc4.git@pymc-v4-updates#egg=pymc3-4.0.0", # noqa: E501
# "aesara>=2.0.10",
"aesara @ git+https://github.com/pymc-devs/aesara.git@master#egg=aesara-2.1.0",
],
tests_require=["pytest"],
long_description=open("README.md").read() if exists("README.md") else "",
Expand Down

0 comments on commit 5ddd880

Please sign in to comment.