Skip to content

Commit c3f030e

Browse files
committed
Version 1.0.17
Updating Dependencies
1 parent 54200fd commit c3f030e

File tree

5 files changed

+12
-11
lines changed

5 files changed

+12
-11
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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = aws-data-mesh-utils
3-
version = 1.0.16
3+
version = 1.0.17
44
author = Ian Meyers
55
author_email = [email protected]
66
license = Apache 2.0
@@ -25,4 +25,4 @@ test_mypy = False
2525
test_flake8 = False
2626

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

setup.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
from setuptools import find_packages, setup
44

55
setup(
6-
install_requires=['boto3~=1.20.51',
6+
install_requires=['boto3~=1.26.46',
77
'pystache~=0.6.0',
8-
'setuptools~=60.8.1',
9-
'shortuuid~=1.0.8',
10-
'botocore~=1.23.51'],
8+
'setuptools~=65.6.3',
9+
'shortuuid~=1.0.11',
10+
'botocore~=1.29.46'],
1111
include_package_data=True
1212
)

0 commit comments

Comments
 (0)