Skip to content

Commit a3dbd66

Browse files
authored
Merge pull request #138 from chaen/boto
Upper bound constraint for boto
2 parents 16bd9d6 + 2c8abcd commit a3dbd66

File tree

2 files changed

+11
-10
lines changed

2 files changed

+11
-10
lines changed

.github/workflows/build-and-test.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
fi
5353
CONDA_SUBDIR=${{ matrix.target_arch }} constructor . --platform="${{ matrix.target_arch }}" --conda-exe="${CONDA_STANDALONE_PATH}"
5454
- name: Upload installer
55-
uses: actions/upload-artifact@v3
55+
uses: actions/upload-artifact@v4
5656
with:
5757
name: installer-${{ matrix.target_arch }}
5858
path: DIRACOS-*.sh
@@ -67,7 +67,7 @@ jobs:
6767
target_arch: ["linux-64"]
6868
steps:
6969
- name: Download installer
70-
uses: actions/download-artifact@v3
70+
uses: actions/download-artifact@v4
7171
with:
7272
name: installer-${{ matrix.target_arch }}
7373
- name: Generate environment.yaml
@@ -76,7 +76,7 @@ jobs:
7676
source diracos/diracosrc
7777
conda env export --file environment.yaml --prefix $DIRACOS
7878
- name: Upload environment.yaml
79-
uses: actions/upload-artifact@v3
79+
uses: actions/upload-artifact@v4
8080
with:
8181
name: environment-yaml-${{ matrix.target_arch }}
8282
path: |
@@ -93,7 +93,7 @@ jobs:
9393
steps:
9494
- uses: actions/checkout@v3
9595
- name: Download artifacts
96-
uses: actions/download-artifact@v3
96+
uses: actions/download-artifact@v4
9797
with:
9898
path: artifacts
9999
- name: Prepare environment
@@ -108,7 +108,7 @@ jobs:
108108
> release-notes.md
109109
cat release-notes.md
110110
- name: Upload release-notes.md
111-
uses: actions/upload-artifact@v3
111+
uses: actions/upload-artifact@v4
112112
with:
113113
name: release-notes
114114
path: |
@@ -128,7 +128,7 @@ jobs:
128128
steps:
129129
- uses: actions/checkout@v3
130130
- name: Download installer
131-
uses: actions/download-artifact@v3
131+
uses: actions/download-artifact@v4
132132
with:
133133
name: installer-linux-64
134134
- name: Run tests
@@ -146,7 +146,7 @@ jobs:
146146
steps:
147147
- uses: actions/checkout@v3
148148
- name: Download installer
149-
uses: actions/download-artifact@v3
149+
uses: actions/download-artifact@v4
150150
with:
151151
name: installer-osx-64
152152
- name: Run tests
@@ -168,7 +168,7 @@ jobs:
168168
steps:
169169
- uses: actions/checkout@v3
170170
- name: Download installer
171-
uses: actions/download-artifact@v3
171+
uses: actions/download-artifact@v4
172172
with:
173173
name: installer-osx-arm64
174174
- name: Run tests
@@ -195,7 +195,7 @@ jobs:
195195
with:
196196
python-version: '3.9'
197197
- name: Download installer
198-
uses: actions/download-artifact@v3
198+
uses: actions/download-artifact@v4
199199
with:
200200
name: installer-linux-64
201201
- name: Prepare environment

construct.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,8 @@ specs:
5858
- stomp.py >8
5959
# Middleware
6060
- apache-libcloud >=3.5.1
61-
- boto3 >=1.5.11
61+
# https://github.com/aws/aws-cli/issues/9214
62+
- boto3 <1.36
6263
- gfal2 >=2.20.5
6364
- gfal2-util >=1.7.1
6465
- fts3 >=3.12

0 commit comments

Comments
 (0)