Skip to content

Commit

Permalink
Drop 3.6 and 3.7 python support
Browse files Browse the repository at this point in the history
  • Loading branch information
zeehio committed Aug 17, 2023
1 parent 6fe8bce commit 9e0b0f0
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 9 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10']

python-version: ['3.8', '3.9', '3.10', '3.11']
steps:
- uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
Expand Down
7 changes: 3 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,14 @@ build-backend = "setuptools.build_meta"
[tool.tox]
legacy_tox_ini = """
[tox]
envlist = py36, py37, py38, py39, py310, mypy, coverage
envlist = py38, py39, py310, py311, mypy, coverage
[gh-actions]
python =
3.6: py36
3.7: py37
3.8: py38
3.9: py39
3.10: py310, mypy, coverage
3.10: py310
3.11: py311, mypy, coverage
[testenv:coverage]
deps =
Expand Down
4 changes: 1 addition & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,10 @@ classifiers =
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
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

[options]
packages = parmap
Expand Down

0 comments on commit 9e0b0f0

Please sign in to comment.