From 118dd475164e6284da2370a01fd4d0b03f35001f Mon Sep 17 00:00:00 2001 From: Patrick Balsiger Date: Thu, 14 Aug 2025 20:06:08 +0200 Subject: [PATCH] pin versions --- .gitlab-ci.yml | 8 ++++---- platformio.ini | 14 ++++++-------- 2 files changed, 10 insertions(+), 12 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 00f20b5..e123e35 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,4 +1,4 @@ -image: python:2.7-stretch +image: python:3.12.10 stages: - build @@ -8,7 +8,7 @@ before_script: examples: stage: build - image: python:2.7-stretch + image: python:3.12.10 script: - - pio run -t clean - - pio run -e basic \ No newline at end of file + - pio run --target clean + - pio run \ No newline at end of file diff --git a/platformio.ini b/platformio.ini index 8f62289..c468dc2 100644 --- a/platformio.ini +++ b/platformio.ini @@ -3,18 +3,16 @@ env_default = basic [common] framework = arduino -platform = espressif8266 +platform = platformio/espressif8266@2.6.3 board = esp12e upload_speed = 921600 monitor_baud = 115200 lib_deps = - Hash - TaskScheduler - SPIFFS - ArduinoJson - Adafruit NeoPixel - ESP8266WiFi - https://gitlab.com/wirelos/sprocket-lib.git#develop + arkhipenko/TaskScheduler@^3.8.5 + ArduinoJson@5.13.4 + adafruit/Adafruit NeoPixel@1.7.0 + #symlink://../../core + https://gitlab.com/wirelos/sprocket-lib.git#master [env:basic] src_filter = +<*> - +