From c411429a165e9351afd0a99111f9a48c9bfcfd87 Mon Sep 17 00:00:00 2001 From: jasinner Date: Thu, 5 Feb 2026 10:59:22 +1000 Subject: [PATCH 1/2] fix black --- advisory_parser/__init__.py | 1 - setup.py | 1 - 2 files changed, 2 deletions(-) diff --git a/advisory_parser/__init__.py b/advisory_parser/__init__.py index ee4ef11..d2d574a 100644 --- a/advisory_parser/__init__.py +++ b/advisory_parser/__init__.py @@ -4,5 +4,4 @@ from .parser import Parser - __version__ = "1.13" diff --git a/setup.py b/setup.py index c176a53..deaf6cb 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,6 @@ from setuptools import setup - with open("README.rst", "r") as f: description = f.read() From 0d0a9ec2821808ff309898169c06c8b99c033ecc Mon Sep 17 00:00:00 2001 From: jasinner Date: Thu, 5 Feb 2026 11:14:14 +1000 Subject: [PATCH 2/2] only test py313 --- .github/workflows/main.yml | 2 +- tox.ini | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 718a1b4..10d0711 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -19,6 +19,6 @@ jobs: tox_env: ${{ matrix.tox_env }} strategy: matrix: - tox_env: [black, py36, py37, py38, py39, py310, py311, py312] + tox_env: [black, py313] runs-on: ubuntu-latest diff --git a/tox.ini b/tox.ini index 3bd926e..01362fb 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = black,py36,py37,py38,py39,py310,py311,py312 +envlist = black,py313 [testenv] deps = pytest