Skip to content

Commit d5cb904

Browse files
committed
Fix test dependencies
1 parent 5a5d239 commit d5cb904

File tree

3 files changed

+7
-9
lines changed

3 files changed

+7
-9
lines changed

.github/workflows/run-tests.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,13 @@ jobs:
2424
uses: actions/setup-python@v2
2525
with:
2626
python-version: '3.10'
27+
- name: Clone
28+
uses: actions/checkout@v2
2729
- name: Install pip and pytest
2830
run: |
2931
apt-get update
3032
apt-get install -y python3-pip
31-
pip install -U pytest
32-
- name: Clone
33-
uses: actions/checkout@v2
33+
pip install -r requirements-dev.txt
3434
- name: Install pymatt
3535
run: |
3636
pip install .

pyproject.toml

-6
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,3 @@ requires-python = ">=3.7"
1414
keywords = ["covenant", "smart contracts", "bitcoin"]
1515
license = { file = "LICENSE" }
1616
dependencies = []
17-
18-
[tool.poetry.dev-dependencies]
19-
bokeh = "^3.3.4"
20-
networkx = "^3.2.1"
21-
numpy = "^1.26.4"
22-
pytest = "^6.2.5"

requirements-dev.txt

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
bokeh>=3.1.0,<4
2+
networkx>=3.1,<4
3+
numpy>=1.24,<2
4+
pytest>=6.2,<7

0 commit comments

Comments
 (0)