Skip to content

Commit

Permalink
Update Python versions
Browse files Browse the repository at this point in the history
  • Loading branch information
mesozoic committed Feb 16, 2024
1 parent fd14e67 commit 24e8305
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ def contents(filename):
version="0.9.5",
classifiers=[
"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",
"Programming Language :: Python :: 3.12",
],
packages=find_packages("."),
entry_points={
Expand Down
10 changes: 5 additions & 5 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
[gh-actions]
python =
3.6: py36
3.7: py37
3.8: py38
3.9: py39
3.10: py310
3.11: py311
3.12: py312

[tox]
project = gmail-yaml-filters
envlist =
py{36,37,38,39,310}
py3{8,9,10,11,12}
pre-commit

[testenv]
basepython =
py36: python3.6
py37: python3.7
py38: python3.8
py39: python3.9
py310: python3.10
py311: python3.11
py312: python3.12
deps =
mock
pytest
Expand Down

0 comments on commit 24e8305

Please sign in to comment.