Skip to content
This repository was archived by the owner on Mar 12, 2025. It is now read-only.

Commit 22937c2

Browse files
authored
build: update to latest Python 3.9 (#367)
1 parent c0fcaee commit 22937c2

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
- name: Set up Python
99
uses: actions/setup-python@v2
1010
with:
11-
python-version: 3.9.0
11+
python-version: 3.9
1212
- name: Install dependencies
1313
run: ./script/bootstrap
1414
- name: Run migrations

runtime.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
python-3.9.0
1+
python-3.9.9

script/bootstrap

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ set -eu
55
if [ -z "${CI:-}" ]; then
66
name=${PWD##*/}
77
# If python version is passed as first argument, use that, otherwise use 3.9
8-
python_version=${1:-3.9.0}
8+
python_version=${1:-3.9.9}
99
echo "==> Bootstrapping a Python $python_version environment called $name..."
1010
eval "$(pyenv init -)"
1111
if ! [ -d "${PYENV_ROOT:-$HOME/.pyenv}/versions/$name" ]; then

0 commit comments

Comments
 (0)