Skip to content

Commit

Permalink
Upgrade Python patch versions
Browse files Browse the repository at this point in the history
  • Loading branch information
seanh committed Jun 11, 2024
1 parent 8eddeea commit 289ba6b
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .cookiecutter/cookiecutter.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"package_name": "gha_token",
"slug": "gha-token",
"short_description": "Get app installation access tokens from the GitHub API.",
"python_versions": "3.12.0, 3.11.6, 3.10.13, 3.9.18, 3.8.18",
"python_versions": "3.12.4, 3.11.9, 3.10.14, 3.9.19, 3.8.19",
"github_owner": "hypothesis",
"copyright_holder": "Hypothesis",
"visibility": "public",
Expand All @@ -23,4 +23,4 @@
"__hdev_project_type": "library",
"__copyright_year": "2022"
}
}
}
10 changes: 5 additions & 5 deletions .python-version
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
3.12.0
3.11.6
3.10.13
3.9.18
3.8.18
3.12.4
3.11.9
3.10.14
3.9.19
3.8.19
2 changes: 1 addition & 1 deletion bin/make_python
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ if [ -n "${CI+x}" ]; then exit; fi

pyenv_root=$(pyenv root)

for python_version in 3.12.0 3.11.6 3.10.13 3.9.18 3.8.18; do
for python_version in 3.12.4 3.11.9 3.10.14 3.9.19 3.8.19; do
bin_dir=$pyenv_root/versions/$python_version/bin
if [ ! -f "$bin_dir"/tox ]; then
pyenv install --skip-existing "$python_version"
Expand Down

0 comments on commit 289ba6b

Please sign in to comment.