Skip to content

Commit

Permalink
Drop 3.6, add 3.10 and 3.11 (#79)
Browse files Browse the repository at this point in the history
  • Loading branch information
di authored Dec 8, 2022
1 parent 71f23ed commit 33ab8d8
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 18 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ jobs:
test:
strategy:
matrix:
python: [3.6, 3.7, 3.8, 3.9]
python:
- "3.7"
- "3.8"
- "3.9"
- "3.10"
- "3.11"
runs-on: ubuntu-latest
steps:
- name: Checkout
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,11 @@ def readme():
"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",
"Intended Audience :: Developers",
],
keywords="validate CSV vampires",
Expand Down
17 changes: 1 addition & 16 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,22 +4,7 @@
# and then run "tox" from this directory.

[tox]
envlist = begin,py{27,35,36,37},lint,end

[testenv:py27]
basepython = python2.7

[testenv:py35]
basepython = python3.5

[testenv:py36]
basepython = python3.6

[testenv:py37]
basepython = python3.7

[testenv:py38]
basepython = python3.8
envlist = begin,lint,end

[testenv:lint]
commands = black --check vladiate tests
Expand Down

0 comments on commit 33ab8d8

Please sign in to comment.