Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bin/build.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash

if [ "$1" == "build" ]; then
rm -Rf dist build && python3 setup.py install
rm -Rf dist build && python3 -m build
twine check dist/*
elif [ "$1" == "deploy-test" ]; then
twine upload --repository-url https://test.pypi.org/legacy/ dist/*
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[build-system]
requires = [
"setuptools>=42",
"setuptools>=61.0.0",
"wheel"
]
build-backend = "setuptools.build_meta"
build-backend = "setuptools.build_meta"
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = aws-data-mesh-utils
version = 1.0.17
version = 1.0.20
author = Ian Meyers
author_email = meyersi@amazon.co.uk
license = Apache 2.0
Expand Down