Skip to content

Commit

Permalink
build: drop support for python 3.7
Browse files Browse the repository at this point in the history
BREAKING CHANGE: drop support for python 3.7
  • Loading branch information
pyoor committed Apr 25, 2023
1 parent 9e579d6 commit 87b5d98
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
8 changes: 5 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,11 @@ classifiers = [
"Topic :: Software Development :: Testing",
"Topic :: Security",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"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",

]
description = "A python module for analyzing SpiderMonkey and Firefox bugs"
homepage = "https://github.com/MozillaSecurity/bugmon"
Expand All @@ -59,7 +61,7 @@ version = "2.4.0"
autobisect = "^6.1.0"
bugsy = { git = "https://github.com/AutomatedTester/Bugsy.git" }
fuzzfetch = "^2.2.2"
python = "^3.7"
python = "^3.8"
typing-extensions = "^4.2.0"

[tool.poetry.dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py{37,38,39},lint
envlist = py{38,39,310,311},lint
isolated_build = true
skip_missing_interpreters = true

Expand Down

0 comments on commit 87b5d98

Please sign in to comment.