Run test workflows on python 3.10

Signed-off-by: Christian König <ckoenig@posteo.de>
This commit is contained in:
Christian König 2022-09-15 10:59:34 +02:00
parent fe8b0e98ab
commit c1a927fff1
No known key found for this signature in database
2 changed files with 3 additions and 2 deletions

View File

@ -51,10 +51,10 @@ jobs:
name: Checkout repository
uses: actions/checkout@v3.0.2
-
name: Set up Python 3.8
name: Set up Python 3.10
uses: actions/setup-python@v4.2.0
with:
python-version: 3.8
python-version: '3.10'
-
name: Install dependencies
run: pip install -r test/requirements.txt

View File

@ -1,6 +1,7 @@
from setuptools import setup
setup(
py_modules=[],
setup_requires=['pytest-runner'],
tests_require=['pytest'],
)