minor breaking change: Improved NvidiaGPU.devices() such that it now always returns a unicode string, instead of a binary string in Python 3.8-3.9 and a unicode string in Python 3.10+.
Improves tox.ini, so one now can run tox for testing everything using test discovery, or tox -e py11 -- -k "test_case_search_string" for testing a specific test using a specific Python version
Improved pyproject.toml such that logs/ and test_logs/ directories will not get detected as package folders. These directories are not checked in Git, but appears during testing. This just means that one does not have to run rm -rf logs/ test_logs/ between test runs.
Added Python 3.8-3.11 to Github Actions test matrix for improved compatibility with supported Python versions.
Made version specific usage of either pkg_resources or importlib depending on Python version.
Changelog
tox.ini
, so one now can runtox
for testing everything using test discovery, ortox -e py11 -- -k "test_case_search_string"
for testing a specific test using a specific Python versionpyproject.toml
such thatlogs/
andtest_logs/
directories will not get detected as package folders. These directories are not checked in Git, but appears during testing. This just means that one does not have to runrm -rf logs/ test_logs/
between test runs.pkg_resources
orimportlib
depending on Python version.