Skip to content

Commit

Permalink
Merge pull request #79 from radarhere/python
Browse files Browse the repository at this point in the history
Python version updates
  • Loading branch information
radarhere authored Aug 11, 2023
2 parents 0d2af4f + 0ce8895 commit b1804a4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "pypy-3.7", "pypy-3.8"]
python-version: ["3.8", "3.9", "3.10", "3.11", "pypy-3.9", "pypy-3.10"]
os: [ubuntu-latest]

steps:
- uses: actions/checkout@v3

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}

Expand Down
7 changes: 3 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import setuptools

with open("README.rst", "r", encoding="utf-8") as fh:
with open("README.rst", encoding="utf-8") as fh:
long_description = fh.read()

sane = setuptools.Extension('_sane',
Expand All @@ -21,17 +21,16 @@
packages=setuptools.find_packages(),
classifiers=[
"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",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Multimedia :: Graphics",
"Topic :: Multimedia :: Graphics :: Capture :: Scanners",
],
python_requires=">=3.6",
python_requires=">=3.8",
py_modules=['sane'],
ext_modules=[sane])

0 comments on commit b1804a4

Please sign in to comment.