Skip to content

Commit 45b1aab

Browse files
rollback debugs
1 parent bda17de commit 45b1aab

File tree

2 files changed

+4
-9
lines changed

2 files changed

+4
-9
lines changed

.github/workflows/main.yml

+2-6
Original file line numberDiff line numberDiff line change
@@ -21,25 +21,21 @@ jobs:
2121
- "3.9"
2222
- "3.10"
2323
- "3.11"
24-
- "3.12"
2524
os:
2625
- ubuntu-22.04
2726
- macos-13
2827
# - windows-latest
2928
steps:
3029
- name: Checkout
3130
uses: actions/checkout@v4
32-
- name: Install Poetry
33-
shell: bash
34-
run: pipx install poetry
3531
- name: Set up Python ${{ matrix.python }}
3632
uses: actions/setup-python@v5
3733
with:
3834
python-version: ${{ matrix.python }}
39-
cache: 'poetry'
35+
- name: Install Poetry
36+
run: pip install 'poetry<2'
4037
- name: Install Poetry dependencies
4138
run: poetry install -n --no-root -E client
42-
shell: bash
4339
- name: Run linters
4440
run: poetry run make check
4541
- name: Run tests

pyproject.toml

+2-3
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,12 @@ include = ["hathorlib/py.typed"]
3333
exclude = ["tests", "tests.*"]
3434

3535
[tool.poetry.dependencies]
36-
python = ">=3.10,<4"
36+
python = ">=3.9,<4"
3737
base58 = "~2.1.1"
3838
structlog = {version = "~22.3.0", optional = true}
3939
aiohttp = {version = "~3.9.3", optional = true}
4040
cryptography = "~42.0.5"
41-
pyopenssl = "=24.2.1"
42-
pycoin = "~0.92.20230326"
41+
pycoin = "~0.92"
4342

4443
[tool.poetry.dev-dependencies]
4544
isort = {version = "~5.13.2", extras = ["colors"]}

0 commit comments

Comments
 (0)