lists.arthurdejong.org
RSS feed

python-pskc branch master updated. 1.3-5-g056f5ab

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

python-pskc branch master updated. 1.3-5-g056f5ab



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-pskc".

The branch, master has been updated
       via  056f5ab50e6243be6fd2352aa93cf7dd326e0b56 (commit)
      from  cfaae11c0bb4ac29ff9cf6167fd7f09be518b428 (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-pskc/commit/?id=056f5ab50e6243be6fd2352aa93cf7dd326e0b56

commit 056f5ab50e6243be6fd2352aa93cf7dd326e0b56
Author: Arthur de Jong <arthur@arthurdejong.org>
Date:   Mon Apr 21 14:48:29 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 7228a59..32e4010 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -9,12 +9,12 @@ on:
     - cron: '9 0 * * 1'
 
 jobs:
-  base:
-    runs-on: ubuntu-20.04
+  test:
+    runs-on: ubuntu-latest
     strategy:
       fail-fast: false
       matrix:
-        python-version: [3.6, 3.7, 3.8, 3.9, '3.10', 3.11, 3.12, pypy3.9, 
pypy3.10]
+        python-version: [3.8, 3.9, '3.10', 3.11, 3.12, pypy3.9, pypy3.10]
         flavour: [signxml]
     steps:
       - uses: actions/checkout@v3
diff --git a/setup.py b/setup.py
index f818aa5..b344522 100755
--- a/setup.py
+++ b/setup.py
@@ -58,8 +58,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 42f59d9..d5c038d 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,5 +1,5 @@
 [tox]
-envlist = 
py{36,37,38,39,310,312,py,py3}-signxml,py{36,37,38,39,310,311,312,py3}{-legacy,-legacy-defusedxml,-lxml},flake8,docs,codespell
+envlist = 
py{38,39,310,312,py,py3}-signxml,py{38,39,310,311,312,py3}{-legacy,-legacy-defusedxml,-lxml},flake8,docs,codespell
 skip_missing_interpreters = true
 
 [testenv]

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

Summary of changes:
 .github/workflows/test.yml | 6 +++---
 setup.py                   | 2 --
 tox.ini                    | 2 +-
 3 files changed, 4 insertions(+), 6 deletions(-)


hooks/post-receive
-- 
python-pskc