lists.arthurdejong.org
RSS feed

python-stdnum branch master updated. 1.18-3-g4f8155c

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

python-stdnum branch master updated. 1.18-3-g4f8155c



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  4f8155c6080bef3e48488815ae23e84cbc71da6f (commit)
      from  74d854f84fa28b736c3b805a377a6bed279dd46a (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=4f8155c6080bef3e48488815ae23e84cbc71da6f

commit 4f8155c6080bef3e48488815ae23e84cbc71da6f
Author: Arthur de Jong <arthur@arthurdejong.org>
Date:   Mon Dec 12 20:01:52 2022 +0100

    Run Python 3.5 and 3.6 GitHub tests on older Ubuntu
    
    The ubuntu-latest now points to ubuntu-22.04 instead of ubuntu-20.04
    before.
    
    This also switches the PyPy version to test with to 3.9.

diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 2eef84e..05b28ab 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -9,12 +9,28 @@ on:
     - cron: '9 0 * * 1'
 
 jobs:
+  test_legacy:
+    runs-on: ubuntu-20.04
+    strategy:
+      fail-fast: false
+      matrix:
+        python-version: [3.5, 3.6]
+    steps:
+      - uses: actions/checkout@v3
+      - name: Set up Python ${{ matrix.python-version }}
+        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
   test:
     runs-on: ubuntu-latest
     strategy:
       fail-fast: false
       matrix:
-        python-version: [2.7, 3.5, 3.6, 3.7, 3.8, 3.9, '3.10', pypy2.7, 
pypy3.6]
+        python-version: [2.7, 3.7, 3.8, 3.9, '3.10', pypy2.7, 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, 17 insertions(+), 1 deletion(-)


hooks/post-receive
-- 
python-stdnum