From 3ad95acffcadc4dc98303ed15a8f4697f9320770 Mon Sep 17 00:00:00 2001 From: Daniel Bluhm Date: Thu, 21 Sep 2023 12:46:52 -0400 Subject: [PATCH 1/2] chore: update pydid and drop python 3.7 Signed-off-by: Daniel Bluhm --- setup.cfg | 2 +- setup.py | 2 +- tox.ini | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.cfg b/setup.cfg index 876f088..f0bf544 100644 --- a/setup.cfg +++ b/setup.cfg @@ -30,7 +30,7 @@ classifiers = [options] packages = peerdid,peerdid.core include_package_data = true -python_requires = >= 3.7 +python_requires = >= 3.8 # Dependencies are in setup.py for GitHub's dependency graph. [options.packages.find] diff --git a/setup.py b/setup.py index 36cd286..a122415 100644 --- a/setup.py +++ b/setup.py @@ -2,6 +2,6 @@ # TODO move remaining things setup( - install_requires=["base58~=2.1.0", "pydid~=0.3.5", "varint~=1.0.2"], + install_requires=["base58~=2.1.0", "pydid~=0.4.0.post1", "varint~=1.0.2"], extras_require={"tests": ["pytest==6.2.5", "pytest-xdist==2.3.0"]}, ) diff --git a/tox.ini b/tox.ini index f169c7c..6da68ef 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,6 @@ [tox] envlist = - py{311,310,39,38,37,36} + py{311,310,39,38} skip_missing_interpreters = true [testenv] From 5a4cd3b209be4569cfe2d963a89b7d65e67593f0 Mon Sep 17 00:00:00 2001 From: Daniel Bluhm Date: Thu, 21 Sep 2023 13:12:09 -0400 Subject: [PATCH 2/2] ci: drop 3.7 tests from workflow Signed-off-by: Daniel Bluhm --- .github/workflows/verify.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/verify.yml b/.github/workflows/verify.yml index 395dc78..3580e0b 100644 --- a/.github/workflows/verify.yml +++ b/.github/workflows/verify.yml @@ -61,7 +61,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v4 with: - python-version: 3.7 + python-version: 3.9 - name: Install black run: pip install black @@ -77,7 +77,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v4 with: - python-version: 3.7 + python-version: 3.9 - name: Install flake8 run: pip install flake8 @@ -88,14 +88,13 @@ jobs: unit: strategy: matrix: - python-version: [ '3.7', '3.8', '3.9', '3.10', '3.11' ] + python-version: [ '3.8', '3.9', '3.10', '3.11' ] os: [ ubuntu-latest, windows-latest, macos-latest ] include: - {python-version: '3.11', toxenv: py311} - {python-version: '3.10', toxenv: py310} - {python-version: '3.9', toxenv: py39} - {python-version: '3.8', toxenv: py38} - - {python-version: '3.7', toxenv: py37} runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v3