mozilla / addons

☂ Umbrella repository for Mozilla Addons ✨
Other
128 stars 41 forks source link

Install requirements file on RTD builds #15135

Closed KevinMind closed 3 weeks ago

KevinMind commented 3 weeks ago

Fixes: mozilla/addons#15136

┆Issue is synchronized with this Jira Task

diox commented 3 weeks ago

In the past those were out of date and causing issues as a result. We should enable dependabot for this repos if we're starting to use those deps again. Something like:

# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file

version: 2
updates:
  - package-ecosystem: "pip"
    directory: "/requirements"
    schedule:
      interval: "weekly"
KevinMind commented 3 weeks ago

In the past those were out of date and causing issues as a result. We should enable dependabot for this repos if we're starting to use those deps again. Something like:

# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file

version: 2
updates:
  - package-ecosystem: "pip"
    directory: "/requirements"
    schedule:
      interval: "weekly"

https://github.com/mozilla/addons/issues/15140