File tree 2 files changed +4
-9
lines changed
2 files changed +4
-9
lines changed Original file line number Diff line number Diff line change @@ -21,25 +21,21 @@ jobs:
21
21
- " 3.9"
22
22
- " 3.10"
23
23
- " 3.11"
24
- - " 3.12"
25
24
os :
26
25
- ubuntu-22.04
27
26
- macos-13
28
27
# - windows-latest
29
28
steps :
30
29
- name : Checkout
31
30
uses : actions/checkout@v4
32
- - name : Install Poetry
33
- shell : bash
34
- run : pipx install poetry
35
31
- name : Set up Python ${{ matrix.python }}
36
32
uses : actions/setup-python@v5
37
33
with :
38
34
python-version : ${{ matrix.python }}
39
- cache : ' poetry'
35
+ - name : Install Poetry
36
+ run : pip install 'poetry<2'
40
37
- name : Install Poetry dependencies
41
38
run : poetry install -n --no-root -E client
42
- shell : bash
43
39
- name : Run linters
44
40
run : poetry run make check
45
41
- name : Run tests
Original file line number Diff line number Diff line change @@ -33,13 +33,12 @@ include = ["hathorlib/py.typed"]
33
33
exclude = [" tests" , " tests.*" ]
34
34
35
35
[tool .poetry .dependencies ]
36
- python = " >=3.10 ,<4"
36
+ python = " >=3.9 ,<4"
37
37
base58 = " ~2.1.1"
38
38
structlog = {version = " ~22.3.0" , optional = true }
39
39
aiohttp = {version = " ~3.9.3" , optional = true }
40
40
cryptography = " ~42.0.5"
41
- pyopenssl = " =24.2.1"
42
- pycoin = " ~0.92.20230326"
41
+ pycoin = " ~0.92"
43
42
44
43
[tool .poetry .dev-dependencies ]
45
44
isort = {version = " ~5.13.2" , extras = [" colors" ]}
You can’t perform that action at this time.
0 commit comments