Skip to content

Commit

Permalink
Merge pull request #397 from Crunch-io/py311support
Browse files Browse the repository at this point in the history
try new python support
  • Loading branch information
ernestoarbitrio authored Feb 27, 2024
2 parents 631d377 + 7565c93 commit e91cd94
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ jobs:
strategy:
max-parallel: 5
matrix:
python-version: [3.6, 3.7, 3.8, 3.9]
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
Expand Down
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,9 @@ ENV/
# mypy
.mypy_cache/

#ruff
.ruff_cache

# vim
*.swp
*.swo
Expand Down
6 changes: 5 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,19 +1,23 @@
[tox]
envlist = py36, py37, py38, py39, coverage, lint
envlist = py36, py37, py38, py39, py310, py311, coverage, lint

[gh-actions]
python =
3.6: py36
3.7: py37
3.8: py38
3.9: py39
3.10: py310
3.11: py311

[testenv]
basepython =
py36: python3.6
py37: python3.7
py38: python3.8
py39: python3.9
py310: python3.10
py311: python3.11
py3: python3.6

commands =
Expand Down

0 comments on commit e91cd94

Please sign in to comment.