Skip to content

Commit 24ca229

Browse files
authored
Merge pull request #3491 from rtibbles/dependency_upgrade
Attempt to do automated dependency upgrades.
2 parents 7bf3177 + f96442c commit 24ca229

2 files changed

Lines changed: 22 additions & 0 deletions

File tree

.github/dependabot.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Automatically update versions for pip and npm
2+
3+
version: 2
4+
updates:
5+
6+
# Maintain dependencies for Python
7+
- package-ecosystem: "pip"
8+
directory: "/"
9+
schedule:
10+
interval: "daily"
11+
12+
# Maintain dependencies for Javascript
13+
- package-ecosystem: "npm"
14+
directory: "/"
15+
schedule:
16+
interval: "daily"

runtime.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# This is the required version of Python to run Studio currently.
2+
# This is determined by the default Python 3 version that is installed
3+
# inside Ubuntu Bionic, which is used to build images for Studio.
4+
# We encode it here so that it can be picked up by Github's dependabot
5+
# to manage automated package upgrades.
6+
python-3.6.9

0 commit comments

Comments
 (0)