lists.arthurdejong.org
RSS feed

python-stdnum branch master updated. 1.17-16-gb36c0d6

[Date Prev][Date Next] [Thread Prev][Thread Next]

python-stdnum branch master updated. 1.17-16-gb36c0d6



This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "python-stdnum".

The branch, master has been updated
       via  b36c0d6f3b70cca0aa77a31418d4dea1a4aba723 (commit)
      from  9f796913ca9817936ceee9e1c74d8297ca9b6a42 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
https://arthurdejong.org/git/python-stdnum/commit/?id=b36c0d6f3b70cca0aa77a31418d4dea1a4aba723

commit b36c0d6f3b70cca0aa77a31418d4dea1a4aba723
Author: Christian Clauss <cclauss@me.com>
Date:   Mon Aug 8 21:27:06 2022 +0200

    Upgrade GitHub Actions
    
    Update checkout to v3 (no relevant changes) and setup-python to v4
    (changes the names for pypy versions).

diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index d1c552c..7c7052e 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -12,25 +12,25 @@ jobs:
   test:
     runs-on: ubuntu-latest
     strategy:
-      matrix:
-        python-version: [2.7, 3.5, 3.6, 3.7, 3.8, 3.9, pypy-2.7, pypy-3.6]
       fail-fast: false
+      matrix:
+        python-version: [2.7, 3.5, 3.6, 3.7, 3.8, 3.9, pypy2.7, pypy3.6]
     steps:
-      - uses: actions/checkout@v2
+      - uses: actions/checkout@v3
       - name: Set up Python ${{ matrix.python-version }}
-        uses: actions/setup-python@v2
+        uses: actions/setup-python@v4
         with:
           python-version: ${{ matrix.python-version }}
       - name: Install dependencies
         run: python -m pip install --upgrade pip tox
       - name: Run tox
-        run: tox -e "$(echo py${{ matrix.python-version }} | sed -e 
's/[.-]//g;s/pypypy/pypy/')" --skip-missing-interpreters false
+        run: tox -e "$(echo py${{ matrix.python-version }} | sed -e 
's/[.]//g;s/pypypy/pypy/')" --skip-missing-interpreters false
   docs:
     runs-on: ubuntu-latest
     steps:
-      - uses: actions/checkout@v2
+      - uses: actions/checkout@v3
       - name: Set up Python 3.8
-        uses: actions/setup-python@v2
+        uses: actions/setup-python@v4
         with:
           python-version: 3.8
       - name: Install dependencies
@@ -40,9 +40,9 @@ jobs:
   flake8:
     runs-on: ubuntu-latest
     steps:
-      - uses: actions/checkout@v2
+      - uses: actions/checkout@v3
       - name: Set up Python 3.8
-        uses: actions/setup-python@v2
+        uses: actions/setup-python@v4
         with:
           python-version: 3.8
       - name: Install dependencies
@@ -57,7 +57,7 @@ jobs:
       security-events: write
     steps:
     - name: Checkout repository
-      uses: actions/checkout@v2
+      uses: actions/checkout@v3
     - name: Initialize CodeQL
       uses: github/codeql-action/init@v2
       with:

-----------------------------------------------------------------------

Summary of changes:
 .github/workflows/test.yml | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)


hooks/post-receive
-- 
python-stdnum