Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test installation with chia - make it work too #953

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,8 @@ jobs:
coverage: true
- name: Check hints
tox: check-hints
- name: Install with Chia
tox: install-with-chia
include:
- task:
name: Check manifest
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ install_requires =
click ~= 7.1
desert == 2020.11.18
marshmallow ~= 3.12
packaging ~= 20.9
packaging ~= 21.0
pendulum ~= 2.1
psutil ~= 5.8
pyyaml ~= 5.4
Expand Down
6 changes: 6 additions & 0 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,12 @@ extras =
commands =
mypy --package plotman

[testenv:install-with-chia-py{37,38,39}]
skip_install = true
commands =
pip install --upgrade pip setuptools wheel
pip install {toxinidir} chia-blockchain==1.3.0

[testenv:check-format]
basepython = python3.8
changedir = {toxinidir}
Expand Down