From 2452ed56e8a869493bf8ea727c6e98bcb56e0209 Mon Sep 17 00:00:00 2001 From: Roman Zeyde Date: Sat, 24 Dec 2022 21:18:09 +0200 Subject: [PATCH 1/2] Fix pytest usage https://github.com/romanz/amodem/commit/0c5ba9480b310d9de7794a6ec62e409a3e94625f#r93932858 --- .github/workflows/build.yml | 2 +- tox.ini | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3c9add0..776bdf1 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -33,4 +33,4 @@ jobs: - name: Test with pytest run: | - py.test -v --cov=amodem + pytest -v --cov=amodem diff --git a/tox.ini b/tox.ini index c6661ad..d7f2f4e 100644 --- a/tox.ini +++ b/tox.ini @@ -10,5 +10,5 @@ deps= commands= pycodestyle amodem/ scripts/ pylint --extension-pkg-whitelist=numpy --reports=no amodem --rcfile .pylintrc - coverage run --source amodem/ --omit="*/__main__.py" -m py.test -v + coverage run --source amodem/ --omit="*/__main__.py" -m pytest -v coverage report From bb68779d752805ce94ec4b37b119d3ff60a19589 Mon Sep 17 00:00:00 2001 From: Roman Zeyde Date: Sat, 24 Dec 2022 21:25:13 +0200 Subject: [PATCH 2/2] Update supported Python versions --- .github/workflows/build.yml | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 776bdf1..beee8ce 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"] + python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"] steps: - uses: actions/checkout@v2 diff --git a/setup.py b/setup.py index a1e3c97..8a76a8d 100644 --- a/setup.py +++ b/setup.py @@ -32,11 +32,11 @@ setup( 'Intended Audience :: Information Technology', 'License :: OSI Approved :: MIT License', 'Operating System :: POSIX', - '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', 'Topic :: Software Development :: Libraries :: Python Modules', 'Topic :: System :: Networking', 'Topic :: Communications',