File tree Expand file tree Collapse file tree 5 files changed +9
-9
lines changed Expand file tree Collapse file tree 5 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 57
57
python -c "from urllib.request import urlretrieve; urlretrieve('${{ env.BUILDER_HOST }}/${{ env.BUILDER_SOURCE }}/${{ env.BUILDER_VERSION }}/builder.pyz?run=${{ env.RUN }}', 'builder.pyz')"
58
58
python builder.pyz build -p ${{ env.PACKAGE_NAME }}
59
59
- name : configure AWS credentials (MQTT5)
60
- uses : aws-actions/configure-aws-credentials@v2
60
+ uses : aws-actions/configure-aws-credentials@v4
61
61
with :
62
62
role-to-assume : ${{ env.CI_MQTT5_ROLE }}
63
63
aws-region : ${{ env.AWS_DEFAULT_REGION }}
@@ -130,7 +130,7 @@ jobs:
130
130
chmod a+x builder
131
131
./builder build -p ${{ env.PACKAGE_NAME }}
132
132
- name : configure AWS credentials (MQTT5)
133
- uses : aws-actions/configure-aws-credentials@v2
133
+ uses : aws-actions/configure-aws-credentials@v4
134
134
with :
135
135
role-to-assume : ${{ env.CI_MQTT5_ROLE }}
136
136
aws-region : ${{ env.AWS_DEFAULT_REGION }}
@@ -202,7 +202,7 @@ jobs:
202
202
chmod a+x builder
203
203
./builder build -p ${{ env.PACKAGE_NAME }}
204
204
- name : configure AWS credentials (MQTT5)
205
- uses : aws-actions/configure-aws-credentials@v2
205
+ uses : aws-actions/configure-aws-credentials@v4
206
206
with :
207
207
role-to-assume : ${{ env.CI_MQTT5_ROLE }}
208
208
aws-region : ${{ env.AWS_DEFAULT_REGION }}
Original file line number Diff line number Diff line change 68
68
force : true
69
69
70
70
- name : configure AWS credentials (Release)
71
- uses : aws-actions/configure-aws-credentials@v2
71
+ uses : aws-actions/configure-aws-credentials@v4
72
72
with :
73
73
role-to-assume : arn:aws:iam::180635532705:role/CI_V2_RELEASE_S3_ROLE
74
74
aws-region : us-east-1
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ phases:
11
11
- sudo apt-get install python3 python3-pip -y
12
12
- export PATH=$PATH:$HOME/.local/bin
13
13
- python3 -m pip install --user --upgrade pip
14
- - python3 -m pip install --user --upgrade twine setuptools wheel awscli PyOpenSSL six
14
+ - python3 -m pip install --user --upgrade twine awscli build setuptools
15
15
- echo "\nBuild version data:"
16
16
- echo "\nPython Version:"; python3 --version
17
17
pre_build :
@@ -24,7 +24,7 @@ phases:
24
24
build :
25
25
commands :
26
26
- echo Build started on `date`
27
- - python3 setup.py sdist bdist_wheel
27
+ - python3 -m build
28
28
- python3 -m twine upload -r pypi dist/*
29
29
post_build :
30
30
commands :
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ phases:
11
11
- sudo apt-get install python3 python3-pip -y
12
12
- export PATH=$PATH:$HOME/.local/bin
13
13
- python3 -m pip install --user --upgrade pip
14
- - python3 -m pip install --user --upgrade twine setuptools wheel awscli PyOpenSSL six
14
+ - python3 -m pip install --user --upgrade twine awscli build setuptools
15
15
- echo "\nBuild version data:"
16
16
- echo "\nPython Version:"; python3 --version
17
17
pre_build :
@@ -24,7 +24,7 @@ phases:
24
24
build :
25
25
commands :
26
26
- echo Build started on `date`
27
- - python3 setup.py sdist bdist_wheel
27
+ - python3 -m build
28
28
- python3 -m twine upload -r testpypi dist/*
29
29
post_build :
30
30
commands :
Original file line number Diff line number Diff line change @@ -42,5 +42,5 @@ def _load_version():
42
42
install_requires = [
43
43
'awscrt==0.27.4' ,
44
44
],
45
- python_requires = '>=3.7 ' ,
45
+ python_requires = '>=3.8 ' ,
46
46
)
You can’t perform that action at this time.
0 commit comments