-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Loading status checks…
Merge pull request #31 from codex-team/feat/decrease-python-vesrion
Showing
4 changed files
with
29 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -106,7 +106,7 @@ Parameters: | |
|
||
## Requirements | ||
|
||
- Python \>= 3.12 | ||
- Python \>= 3.10 | ||
- requests | ||
|
||
## Links | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,22 +4,22 @@ build-backend = "hatchling.build" | |
[project] | ||
dynamic = ["version"] | ||
dependencies = ["requests"] | ||
name = "hawkcatcher" | ||
name = "hawk_python_sdk" | ||
authors = [{ name = "CodeX Team", email = "[email protected]" }] | ||
description = "Python errors Catcher module for Hawk." | ||
readme = "README.md" | ||
requires-python = ">=3.9" | ||
requires-python = ">=3.10" | ||
classifiers = [ | ||
"Intended Audience :: Developers", | ||
"Topic :: Software Development :: Bug Tracking", | ||
"License :: OSI Approved :: MIT License", | ||
"Programming Language :: Python :: 3.5", | ||
"Programming Language :: Python :: 3.10", | ||
"Environment :: Console", | ||
"Environment :: Web Environment", | ||
] | ||
[project.optional-dependencies] | ||
flask = ["flask"] | ||
fastapi = ["starlette"] | ||
fastapi = ["fastapi"] | ||
[tool.hatch.version] | ||
path = "src/hawkcatcher/__init__.py" | ||
[project.urls] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
__version__ = "3.5.0" | ||
__version__ = "3.5.1" | ||
|
||
from .core import Hawk | ||
from .types import HawkCatcherSettings | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters