ソースを参照

Merge pull request #70 from offa/py313

Python 3.13 support
develop
Ben Kurtovic 6日前
committed by GitHub
コミット
05991cf0dd
この署名に対応する既知のキーがデータベースに存在しません GPGキーID: B5690EEEBB952194
2個のファイルの変更2行の追加3行の削除
  1. +1
    -1
      .github/workflows/ci.yml
  2. +1
    -2
      gitup/update.py

+ 1
- 1
.github/workflows/ci.yml ファイルの表示

@@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python: [ "3.8", "3.9", "3.10", "3.11", "3.12" ]
python: [ "3.8", "3.9", "3.10", "3.11", "3.12", "3.13" ]
name: python-${{ matrix.python }}
steps:
- name: Checkout


+ 1
- 2
gitup/update.py ファイルの表示

@@ -7,7 +7,6 @@ from __future__ import print_function

from glob import glob
import os
import pipes
import re
import shlex

@@ -85,7 +84,7 @@ def _fetch_remotes(remotes, prune):
msg = re.sub(r"\s+", " ", err.stderr).strip()
msg = re.sub(r"^stderr: *'(fatal: *)?", "", msg).strip("'")
if not msg:
command = " ".join(pipes.quote(arg) for arg in err.command)
command = " ".join(shlex.quote(arg) for arg in err.command)
msg = "{0} failed with status {1}.".format(command, err.status)
elif not msg.endswith("."):
msg += "."


読み込み中…
キャンセル
保存