Skip to content

Commit

Permalink
add Python 3.13 to CI, remove 3.8 (#114)
Browse files Browse the repository at this point in the history
  • Loading branch information
woodruffw authored Oct 22, 2024
1 parent 76991de commit a9c608a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
uses: trailofbits/.github/.github/workflows/[email protected]
with:
language: python
python-version: "3.8"
python-version: "3.9"

lint-md:
name: Lint Markdown
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ jobs:
strategy:
matrix:
python:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"
- "3.13"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand Down
4 changes: 1 addition & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@ classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.10",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Security",
Expand All @@ -29,7 +27,7 @@ dependencies = [
"requests-cache >= 0.9.6,< 1.3.0",
"rich >= 12.5.1,< 13.10.0",
]
requires-python = ">=3.8"
requires-python = ">=3.9"

[project.urls]
Homepage = "https://pypi.org/project/abi3audit/"
Expand Down
2 changes: 1 addition & 1 deletion test/test_audit.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

import hashlib
import logging
from collections.abc import Iterable
from dataclasses import dataclass
from html.parser import HTMLParser
from pathlib import Path
from typing import Iterable

import pytest
import requests
Expand Down

0 comments on commit a9c608a

Please sign in to comment.