lists.arthurdejong.org
RSS feed

python-stdnum branch master updated. 1.18-23-g8ce4a47

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

python-stdnum branch master updated. 1.18-23-g8ce4a47



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  8ce4a47ce14f2775398fdae1e387362f21258ee3 (commit)
      from  311fd569fd9e10b61a0795d21ea84b0e9f1aad63 (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=8ce4a47ce14f2775398fdae1e387362f21258ee3

commit 8ce4a47ce14f2775398fdae1e387362f21258ee3
Author: Arthur de Jong <arthur@arthurdejong.org>
Date:   Mon Jun 19 23:53:19 2023 +0200

    Run Python 2.7 tests in a container for GitHub Actions
    
    See https://github.com/actions/setup-python/issues/672

diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 1c13ee6..24af22e 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -9,12 +9,26 @@ on:
     - cron: '9 0 * * 1'
 
 jobs:
+  test_py27:
+    runs-on: ubuntu-20.04
+    container:
+      image: python:2.7.18-buster
+    strategy:
+      fail-fast: false
+      matrix:
+        python-version: [2.7]
+    steps:
+      - uses: actions/checkout@v3
+      - name: Install dependencies
+        run: python -m pip install --upgrade pip virtualenv tox
+      - name: Run tox
+        run: tox -e "$(echo py${{ matrix.python-version }} | sed -e 
's/[.]//g;s/pypypy/pypy/')" --skip-missing-interpreters false
   test_legacy:
     runs-on: ubuntu-20.04
     strategy:
       fail-fast: false
       matrix:
-        python-version: [3.5, 3.6]
+        python-version: [3.5, 3.6, pypy2.7]
     steps:
       - uses: actions/checkout@v3
       - name: Set up Python ${{ matrix.python-version }}
@@ -30,7 +44,7 @@ jobs:
     strategy:
       fail-fast: false
       matrix:
-        python-version: [2.7, 3.7, 3.8, 3.9, '3.10', 3.11, pypy2.7, pypy3.9]
+        python-version: [3.7, 3.8, 3.9, '3.10', 3.11, pypy3.9]
     steps:
       - uses: actions/checkout@v3
       - name: Set up Python ${{ matrix.python-version }}

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

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


hooks/post-receive
-- 
python-stdnum