lists.arthurdejong.org
RSS feed

python-stdnum branch master updated. 1.20-29-g3542c06

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

python-stdnum branch master updated. 1.20-29-g3542c06



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  3542c064b8116af25c9f6de2e418b9778f92f571 (commit)
      from  ae0d86cf0063afa69bc02ecdb930ab2fb5561748 (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=3542c064b8116af25c9f6de2e418b9778f92f571

commit 3542c064b8116af25c9f6de2e418b9778f92f571
Author: Arthur de Jong <arthur@arthurdejong.org>
Date:   Mon Apr 21 15:13:25 2025 +0200

    Drop support for Python 3.6 and 3.7
    
    Sadly GitHub has dropped the ability to run tests with these versions of
    Python.

diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index cae9ce3..fd2f644 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -9,22 +9,6 @@ on:
     - cron: '9 0 * * 1'
 
 jobs:
-  test_legacy:
-    runs-on: ubuntu-20.04
-    strategy:
-      fail-fast: false
-      matrix:
-        python-version: [3.6, 3.7]
-    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:
diff --git a/setup.py b/setup.py
index a96631f..d652ba9 100755
--- a/setup.py
+++ b/setup.py
@@ -63,8 +63,6 @@ setup(
         'Operating System :: OS Independent',
         'Programming Language :: Python',
         'Programming Language :: Python :: 3',
-        'Programming Language :: Python :: 3.6',
-        'Programming Language :: Python :: 3.7',
         'Programming Language :: Python :: 3.8',
         'Programming Language :: Python :: 3.9',
         'Programming Language :: Python :: 3.10',
diff --git a/tox.ini b/tox.ini
index 4c59f43..23a313b 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,5 +1,5 @@
 [tox]
-envlist = py{36,37,38,39,310,311,312,313,py3},flake8,docs,headers
+envlist = py{38,39,310,311,312,313,py3},flake8,docs,headers
 skip_missing_interpreters = true
 
 [testenv]

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

Summary of changes:
 .github/workflows/test.yml | 16 ----------------
 setup.py                   |  2 --
 tox.ini                    |  2 +-
 3 files changed, 1 insertion(+), 19 deletions(-)


hooks/post-receive
-- 
python-stdnum