-
-
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.
fix: ssl error for subdomains with underscores (#12)
* fix: ssl error for subdomains with underscores * chore: fix debugging issues * chore: update to new toml package style
- Loading branch information
Showing
9 changed files
with
54 additions
and
89 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 |
---|---|---|
|
@@ -4,6 +4,6 @@ build | |
dist | ||
.DS_Store | ||
venv/ | ||
|
||
.vscode | ||
.idea | ||
.venv/ | ||
.idea | ||
.ropeproject |
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
This file was deleted.
Oops, something went wrong.
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
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 |
---|---|---|
@@ -0,0 +1,43 @@ | ||
[build-system] | ||
requires = ["hatchling"] | ||
build-backend = "hatchling.build" | ||
|
||
[project] | ||
name = "bugsplat" | ||
version = "1.0.4" | ||
authors = [ | ||
{ name="Bobby Galli", email="bobby@bugsplat.com" }, | ||
] | ||
description = "A Python package for sending Unhandled Exceptions to BugSplat" | ||
readme = "README.md" | ||
requires-python = ">=3.8" | ||
classifiers = [ | ||
"Development Status :: 4 - Beta", | ||
"Intended Audience :: Developers", | ||
"License :: OSI Approved :: MIT License", | ||
"Environment :: Console", | ||
"Environment :: Web Environment", | ||
"Operating System :: OS Independent", | ||
"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 :: Only" | ||
] | ||
dependencies = [ | ||
'requests<=2.29.0' | ||
] | ||
|
||
[project.optional-dependencies] | ||
test = [ | ||
"certifi==2022.6.15", | ||
"charset-normalizer==2.0.12", | ||
"idna==3.3", | ||
"requests==2.29.0", | ||
"urllib3==1.26.9" | ||
] | ||
|
||
[project.urls] | ||
Homepage = "https://github.com/BugSplat-Git/bugsplat-py" | ||
Issues = "https://github.com/BugSplat-Git/bugsplat-py/issues" |
Binary file not shown.
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