Skip to content

Commit

Permalink
update python versions in various places
Browse files Browse the repository at this point in the history
Signed-off-by: Arthur Zamarin <[email protected]>
  • Loading branch information
arthurzam committed Jan 19, 2024
1 parent 9cb39d4 commit 831d540
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2006-2021, pkgcheck contributors
Copyright (c) 2006-2024, pkgcheck contributors
All rights reserved.

Redistribution and use in source and binary forms, with or without
Expand Down
6 changes: 3 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -59,17 +59,17 @@ functionality for purposes such as CI or VCS commit support.
Tests
=====

A standalone test runner is integrated in setup.py; to run, just execute::
Normal pytest is used, just execute::

python setup.py test
pytest

In addition, a tox config is provided so the testsuite can be run in a
virtualenv setup against all supported python versions. To run tests for all
environments just execute **tox** in the root directory of a repo or unpacked
tarball. Otherwise, for a specific python version execute something similar to
the following::

tox -e py39
tox -e py311


.. _pkgcore: https://github.com/pkgcore/pkgcore
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ maintainers = [
]
classifiers = [
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dynamic = ["version"]

Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py3{9,10,11,12}
envlist = py3{10,11,12}
skip_missing_interpreters = True
isolated_build = True

Expand Down

0 comments on commit 831d540

Please sign in to comment.