Skip to content

Commit

Permalink
goodbye py37, py38
Browse files Browse the repository at this point in the history
  • Loading branch information
YajJackson committed Apr 13, 2024
1 parent 3800175 commit 9da15f8
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
3 changes: 3 additions & 0 deletions godot_parser/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
from .objects import *
from .sections import *
from .tree import *
from beartype.claw import beartype_this_package

beartype_this_package()

__version__ = "0.1.7"

Expand Down
4 changes: 1 addition & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@ platforms = any
classifiers =
Programming Language :: Python
Programming Language :: Python :: 3
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
Expand All @@ -23,7 +21,7 @@ classifiers =
License :: OSI Approved :: MIT License

[options]
python_requires = >=3.6
python_requires = >=3.9
packages = find:
install_requires =
pyparsing>=3
Expand Down
4 changes: 1 addition & 3 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py37, py38, py39, py310, py311, lint
envlist = py39, py310, py311, lint
isolated_build = true

[testenv]
Expand Down Expand Up @@ -34,8 +34,6 @@ commands =

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

0 comments on commit 9da15f8

Please sign in to comment.