Skip to content

Commit

Permalink
Merge pull request #31 from 0xDEC0DE/update-tests
Browse files Browse the repository at this point in the history
Remove obsolete Python versions from test matrix
  • Loading branch information
bigjools authored Feb 28, 2024
2 parents 6e3356e + 55ca23f commit f6d4402
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "pypy3"]
python-version: ["3.8", "3.9", "3.10"]

services:
redis:
Expand All @@ -18,10 +18,10 @@ jobs:
- 6379:6379

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}

Expand Down
2 changes: 0 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,6 @@
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'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',
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ envdir =
py3: {toxworkdir}/py3
pep8: {toxworkdir}/py3
usedevelop = True
whitelist_externals =
allowlist_externals =
docker-compose
deps =
pytest
Expand Down

0 comments on commit f6d4402

Please sign in to comment.