Skip to content

Commit

Permalink
Merge pull request #64 from dbluhm/chore/updates
Browse files Browse the repository at this point in the history
chore: update pydid and drop python 3.7
  • Loading branch information
mat-work authored Sep 27, 2023
2 parents ce024f4 + 5a4cd3b commit fa93159
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 7 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"]},
)
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
envlist =
py{311,310,39,38,37,36}
py{311,310,39,38}
skip_missing_interpreters = true

[testenv]
Expand Down

0 comments on commit fa93159

Please sign in to comment.