Skip to content

Commit 8ce0939

Browse files
committed
build: 📌 Update project dependencies to remove python 3.9 support as it's EOL.
1 parent 8083f63 commit 8ce0939

File tree

6 files changed

+304
-597
lines changed

6 files changed

+304
-597
lines changed

‎.github/workflows/ci.yml‎

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
---
22
name: "CI"
3-
concurrency: # Cancel any existing runs of this workflow for this same PR
3+
concurrency: # Cancel any existing runs of this workflow for this same PR
44
group: "${{ github.workflow }}-${{ github.ref }}"
55
cancel-in-progress: true
6-
on: # yamllint disable
6+
on: # yamllint disable
77
push:
88
branches:
99
- "main"
@@ -145,7 +145,7 @@ jobs:
145145
strategy:
146146
fail-fast: true
147147
matrix:
148-
python-version: ["3.9", "3.10", "3.11"]
148+
python-version: ["3.10", "3.11", "3.12"]
149149
poetry-version: ["1.8.5"]
150150
runs-on: "ubuntu-24.04"
151151
env:
@@ -178,7 +178,7 @@ jobs:
178178
- name: "Set up Python"
179179
uses: "actions/setup-python@v2"
180180
with:
181-
python-version: "3.9"
181+
python-version: "3.10"
182182
- name: "Install Python Packages"
183183
run: "pip install poetry"
184184
- name: "Set env"
@@ -207,7 +207,7 @@ jobs:
207207
- name: "Set up Python"
208208
uses: "actions/setup-python@v2"
209209
with:
210-
python-version: "3.9"
210+
python-version: "3.10"
211211
- name: "Install Python Packages"
212212
run: "pip install poetry"
213213
- name: "Set env"

‎examples/05-nautobot-peeringdb/Dockerfile‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG PYTHON_VER=3.9.2
1+
ARG PYTHON_VER=3.10.11
22

33
FROM python:${PYTHON_VER}-slim
44

‎examples/05-nautobot-peeringdb/docker-compose.yml‎

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
---
2-
version: "3.9"
32
services:
43
example:
54
build:

0 commit comments

Comments
 (0)