Skip to content

Commit

Permalink
fixup! build: Switch to poetry. Bump version.
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewkozlik committed Apr 30, 2024
1 parent 280112f commit 6250f61
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
strategy:
matrix:
os: [ ubuntu-latest ]
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10']
python-version: ['3.6.*', '3.7.*', '3.8.*', '3.9.*', '3.10.*']
steps:
- uses: actions/checkout@v4
- name: Install poetry
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,12 @@ test:
pytest

style_check:
isort --check-only --recursive shamir_mnemonic/ *.py
isort --check-only shamir_mnemonic/ *.py
black shamir_mnemonic/ *.py --check

style:
black shamir_mnemonic/ *.py
isort -y --recursive shamir_mnemonic/ *.py
isort shamir_mnemonic/ *.py


.PHONY: clean clean-build clean-pyc clean-test test style_check style
7 changes: 3 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,14 @@ readme = [
]

[tool.poetry.dependencies]
python = ">=3.6"
python = ">=3.6,<4.0"
click = ">=7,<9"
bip32utils = "^0.3.post4"
pytest = "*"

[tool.poetry.group.dev.dependencies]
black = "*"
flake8 = "*"
isort = "*"
black = ">=20"
isort = "^5"

[build-system]
requires = ["poetry-core"]
Expand Down

0 comments on commit 6250f61

Please sign in to comment.