Skip to content

Commit 92c38f7

Browse files
committed
2 parents 552d65a + c3f030e commit 92c38f7

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@ dist
44
.DS_Store
55
*egg-info*
66
.DS_Store
7+
build

bin/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22

33
if [ "$1" == "build" ]; then
4-
rm -Rf dist build && python3 -m build
4+
rm -Rf dist build && python3 setup.py install
55
twine check dist/*
66
elif [ "$1" == "deploy-test" ]; then
77
twine upload --repository-url https://test.pypi.org/legacy/ dist/*

requirements.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
boto3~=1.20.51
1+
boto3~=1.26.46
22
pystache~=0.6.0
3-
setuptools~=60.8.1
4-
shortuuid~=1.0.8
5-
botocore~=1.23.51
3+
setuptools~=65.6.3
4+
shortuuid~=1.0.11
5+
botocore~=1.29.46

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@ test_mypy = False
2525
test_flake8 = False
2626

2727
[options.packages.find]
28-
where = src
28+
where = src

0 commit comments

Comments
 (0)