Skip to content

Commit

Permalink
update Makefile and package version dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
aris-koning committed Sep 17, 2024
1 parent d768d76 commit 2fdb484
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
13 changes: 13 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,16 @@ venv/bin/pytest: venv/

pytest: venv/bin/pytest
venv/bin/pytest -r A


venv/bin/twine: setup
venv/bin/pip install twine

sdist: setup
venv/bin/python setup.py build sdist

wheel: setup
venv/bin/python setup.py build bdist_wheel

upload: venv/bin/twine wheel sdist
venv/bin/twine upload dist/*.whl dist/*.tar.gz
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[build-system]
requires = ["setuptools >= 40.6.0", "wheel", 'sqlalchemy>=2.0.0']
requires = ["setuptools >= 40.6.0", "wheel", 'sqlalchemy>=2.0.34']
build-backend = "setuptools.build_meta"

0 comments on commit 2fdb484

Please sign in to comment.