Module: StillActive::PythonHelper

Extended by:
PythonHelper
Included in:
PythonHelper
Defined in:
lib/helpers/python_helper.rb

Overview

Python's calibration for the language-runtime ceiling: the thin sibling of RubyHelper.supported_ruby_range. Python declares its runtime constraint as a PEP 440 requires_python specifier (translate with Pep440Helper before handing it to RuntimeCeilingHelper), and its release calendar lives in the same endoflife.date feed. Everything ecosystem-neutral is in EndoflifeHelper; Python only chooses the feed path.

Instance Method Summary collapse

Instance Method Details

#supported_python_rangeObject



15
16
17
# File 'lib/helpers/python_helper.rb', line 15

def supported_python_range
  EndoflifeHelper.support_window(feed_path: "/api/python.json")
end