Skip to content

Commit 6a57282

Browse files
committed
use py 3.12
1 parent d9b3c0d commit 6a57282

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

.github/workflows/main.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- name: Set up Python
2727
uses: actions/setup-python@v6
2828
with:
29-
python-version: '3.13'
29+
python-version: '3.12'
3030

3131
- name: Install dependencies
3232
run: |
@@ -72,12 +72,15 @@ jobs:
7272
register-python-argcomplete nfctl
7373
7474
- name: Run the NF CLI demo to test installed version
75+
shell: bash
7576
env:
7677
NETFOUNDRY_CLIENT_ID: ${{ secrets.NETFOUNDRY_CLIENT_ID }}
7778
NETFOUNDRY_PASSWORD: ${{ secrets.NETFOUNDRY_PASSWORD }}
7879
NETFOUNDRY_OAUTH_URL: ${{ secrets.NETFOUNDRY_OAUTH_URL }}
7980
run: |
80-
set -x
81+
set -o xtrace
82+
set -o pipefail
83+
8184
nfctl config \
8285
general.network=$(nfctl demo --echo-name --prefix 'gh-${{ github.run_id }}') \
8386
general.yes=True \

docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.13-slim-bookworm
1+
FROM python:3.12-slim-bookworm
22
COPY ./dist/netfoundry-*.whl /tmp/
33
RUN pip install --upgrade pip
44
RUN pip install /tmp/netfoundry-*.whl

0 commit comments

Comments
 (0)