') + ')', 'gi'); if (regex.test(text)) { found = true; var frag = document.createDocumentFragment(); var parts = text.split(regex); parts.forEach(function(part, i) { if (i % 2 === 0) { frag.appendChild(document.createTextNode(part)); } else { var span = document.createElement('span'); span.className = 'userscript-highlight'; span.textContent = part; frag.appendChild(span); } }); node.parentNode.replaceChild(frag, node); } }); } else if (node.nodeType === 1 && node.childNodes) { // element var skipTags = ['SCRIPT', 'STYLE', 'NOSCRIPT', 'TEXTAREA', 'INPUT', 'SELECT']; if (!skipTags.includes(node.tagName)) { Array.from(node.childNodes).forEach(highlight); } } } highlight(document.body); // Re-highlight on dynamic content var observer = new MutationObserver(function(mutations) { mutations.forEach(function(m) { m.addedNodes.forEach(function(node) { if (node.nodeType === 1 || node.nodeType === 3) highlight(node); }); }); }); observer.observe(document.body, { childList: true, subtree: true }); })(); } } catch(__e) { console.warn('[Userscript:Highlight Search Terms]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + ', 'i'); if (__m === '*' || __re.test(location.href)) { // Strip utm_, fbclid, gclid, etc. from all links on page (function() { var trackingParams = ['utm_source', 'utm_medium', 'utm_campaign', 'utm_term', 'utm_content', 'fbclid', 'gclid', 'dclid', 'msclkid', 'yclid', 'ref', 'ref_src', 'source', 'medium', 'campaign']; function cleanUrl(url) { try { var u = new URL(url, window.location.origin); var changed = false; trackingParams.forEach(function(p) { if (u.searchParams.has(p)) { u.searchParams.delete(p); changed = true; } }); return changed ? u.toString() : url; } catch (e) { return url; } } function cleanLinks() { document.querySelectorAll('a[href]').forEach(function(a) { var clean = cleanUrl(a.href); if (clean !== a.href) a.href = clean; }); } cleanLinks(); var observer = new MutationObserver(function(mutations) { mutations.forEach(function(m) { m.addedNodes.forEach(function(node) { if (node.nodeType === 1) { if (node.tagName === 'A') cleanLinks(); node.querySelectorAll('a[href]').forEach(function(a) { var clean = cleanUrl(a.href); if (clean !== a.href) a.href = clean; }); } }); }); }); observer.observe(document.body, { childList: true, subtree: true }); })(); } } catch(__e) { console.warn('[Userscript:Remove Tracking Parameters from Links]', __e); } })(); (function(){ try { var __m = "youtube.com"; var __re = new RegExp('^' + "youtube\\.com" + ', 'i'); if (__m === '*' || __re.test(location.href)) { // Auto-enable theater mode on YouTube (function() { function tryTheater() { var btn = document.querySelector('button[aria-label="Theater mode"], ytd-player #player button[title="Theater mode"]'); if (btn && !btn.classList.contains('activated')) { btn.click(); } } // Try immediately tryTheater(); // Try after navigation (SPA) var lastUrl = location.href; setInterval(function() { if (location.href !== lastUrl) { lastUrl = location.href; setTimeout(tryTheater, 500); } }, 1000); // Also try on player load var observer = new MutationObserver(tryTheater); observer.observe(document.body, { childList: true, subtree: true }); })(); } } catch(__e) { console.warn('[Userscript:YouTube Theater Mode Default]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + ', 'i'); if (__m === '*' || __re.test(location.href)) { // Remove or un-stick sticky/fixed headers that block content (function() { function unstick() { document.querySelectorAll('header, nav, [role="banner"], .header, .navbar, .sticky, .fixed-top, [style*="position: fixed"], [style*="position:sticky"]').forEach(function(el) { if (el.style.position === 'fixed' || el.style.position === 'sticky' || getComputedStyle(el).position === 'fixed' || getComputedStyle(el).position === 'sticky') { el.style.position = 'static'; el.style.top = 'auto'; el.style.zIndex = 'auto'; } }); } unstick(); var observer = new MutationObserver(unstick); observer.observe(document.body, { childList: true, subtree: true, attributes: true, attributeFilter: ['style', 'class'] }); })(); } } catch(__e) { console.warn('[Userscript:Kill Sticky Headers]', __e); } })(); })(); Releases · LizardByte/setup-python-action · GitHub
Skip to content
This repository was archived by the owner on Jun 30, 2025. It is now read-only.

Releases: LizardByte/setup-python-action

v2025.612.124814

Choose a tag to compare

@LizardByte-botLizardByte-bot released this 12 Jun 12:52
5a025cb

What's Changed

Full Changelog: v2025.426.160528...v2025.612.124814


Contributors

LizardByte-botdependabotReenigneArcher

v2025.612.30407

v2025.612.30407Pre-release
Pre-release

Choose a tag to compare

@LizardByte-botLizardByte-bot released this 12 Jun 03:07
d0201ad

What's Changed

Full Changelog: v2025.426.160528...v2025.612.30407


Contributors

LizardByte-botReenigneArcherdependabot

v2025.426.160528

Choose a tag to compare

@LizardByte-botLizardByte-bot released this 26 Apr 16:09
f4367d0

What's Changed

  • chore: update global workflows by @LizardByte-bot in #124
  • build(deps-dev): bump pytest from 8.3.4 to 8.3.5 in the pytest-dependencies group by @dependabot in #123
  • build(deps): bump the lizardbyte-actions group with 2 updates by @dependabot in #126

Full Changelog: v2025.212.161250...v2025.426.160528


Contributors

dependabotLizardByte-bot

v2025.212.161250

Choose a tag to compare

@LizardByte-botLizardByte-bot released this 12 Feb 16:17
c9e2731

What's Changed

Full Changelog: v2024.1105.190605...v2025.212.161250


Contributors

ReenigneArcherdependabot

v2024.1105.190605

Choose a tag to compare

@LizardByte-botLizardByte-bot released this 05 Nov 19:10
381f9c3

What's Changed

Full Changelog: v2024.919.163656...v2024.1105.190605


Contributors

LizardByte-botReenigneArcher

v2024.919.163656

Choose a tag to compare

@LizardByte-botLizardByte-bot released this 19 Sep 16:41
16f114f

What's Changed

  • build(deps): bump LizardByte/create-release-action from 2024.608.160245 to 2024.611.132610 by @dependabot in #100
  • chore: update global workflows by @LizardByte-bot in #102
  • build(deps): bump LizardByte/create-release-action from 2024.611.132610 to 2024.919.143026 by @dependabot in #116
  • build(deps): bump LizardByte/setup-release-action from 2024.608.210128 to 2024.919.143601 by @dependabot in #115
  • ci(release): remove unused variable by @ReenigneArcher in #113
  • ci(pytest): add colored output by @ReenigneArcher in #106
  • build(deps-dev): bump pytest from 8.2.2 to 8.3.3 by @dependabot in #114

Full Changelog: v2024.609.5111...v2024.919.163656


Contributors

dependabotReenigneArcherLizardByte-bot

v2024.609.5111

Choose a tag to compare

@LizardByte-botLizardByte-bot released this 09 Jun 00:55
24f68bb

What's Changed

Full Changelog: v2024.608.234222...2024.609.5111

v2024.608.234222

Choose a tag to compare

@LizardByte-botLizardByte-bot released this 08 Jun 23:46
fc2c422

What's Changed

  • ci: use prerelease logic by @ReenigneArcher in #82
  • build(deps-dev): bump pytest from 8.2.0 to 8.2.1 by @dependabot in #80
  • chore: update global workflows by @LizardByte-bot in #88
  • build(deps): bump LizardByte/create-release-action from 2024.520.193838 to 2024.608.160245 by @dependabot in #92
  • build(deps): bump LizardByte/setup-release-action from 2024.520.193857 to 2024.608.210128 by @dependabot in #91
  • build(deps-dev): bump pytest from 8.2.1 to 8.2.2 by @dependabot in #90

Full Changelog: v2024.515.10401...2024.608.234222

v2024.515.10401

Choose a tag to compare

@LizardByte-botLizardByte-bot released this 15 May 01:07
2d27f6f

What's Changed

  • build(deps): bump LizardByte/create-release-action from 2023.1219.224026 to 2024.511.153520 by @dependabot in #72

Full Changelog: v2024.515.5854...v2024.515.10401

v2024.515.5854

Choose a tag to compare

@LizardByte-botLizardByte-bot released this 15 May 01:03
141f071

What's Changed

Full Changelog: v2024.515.4908...v2024.515.5854