Skip to content

Commit

Permalink
Fix minimal python version
Browse files Browse the repository at this point in the history
  • Loading branch information
fwkz committed Jan 16, 2024
1 parent 88c01ba commit a1abdae
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ endef
all: reformat tests lint


.PHONY: build
build: clean
.PHONY: package
package: clean
$(call colorecho, "\n Building package distributions...")
python setup.py sdist bdist_wheel
python -m build .


.PHONY: publish
publish: build
publish: package
twine upload dist/*


Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ authors = [
{name = "Mariusz Kupidura"},
]
dynamic = ["version"]
requires-python = ">= 3.6"
requires-python = ">= 3.8"
readme = "README.md"
license = {file = "LICENSE"}
classifiers=[
Expand Down

0 comments on commit a1abdae

Please sign in to comment.