insider-python 0.1.1__tar.gz → 0.1.2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (33) hide show
  1. {insider_python-0.1.1 → insider_python-0.1.2}/PKG-INFO +3 -2
  2. {insider_python-0.1.1 → insider_python-0.1.2}/pyproject.toml +3 -2
  3. {insider_python-0.1.1 → insider_python-0.1.2}/src/insider/_version.py +1 -1
  4. {insider_python-0.1.1 → insider_python-0.1.2}/src/insider_python.egg-info/PKG-INFO +3 -2
  5. {insider_python-0.1.1 → insider_python-0.1.2}/README.md +0 -0
  6. {insider_python-0.1.1 → insider_python-0.1.2}/setup.cfg +0 -0
  7. {insider_python-0.1.1 → insider_python-0.1.2}/src/insider/__init__.py +0 -0
  8. {insider_python-0.1.1 → insider_python-0.1.2}/src/insider/_envelope.py +0 -0
  9. {insider_python-0.1.1 → insider_python-0.1.2}/src/insider/client.py +0 -0
  10. {insider_python-0.1.1 → insider_python-0.1.2}/src/insider/contrib/__init__.py +0 -0
  11. {insider_python-0.1.1 → insider_python-0.1.2}/src/insider/contrib/django/__init__.py +0 -0
  12. {insider_python-0.1.1 → insider_python-0.1.2}/src/insider/contrib/django/apps.py +0 -0
  13. {insider_python-0.1.1 → insider_python-0.1.2}/src/insider/contrib/django/middleware.py +0 -0
  14. {insider_python-0.1.1 → insider_python-0.1.2}/src/insider/dsn.py +0 -0
  15. {insider_python-0.1.1 → insider_python-0.1.2}/src/insider/py.typed +0 -0
  16. {insider_python-0.1.1 → insider_python-0.1.2}/src/insider/safety.py +0 -0
  17. {insider_python-0.1.1 → insider_python-0.1.2}/src/insider/scope.py +0 -0
  18. {insider_python-0.1.1 → insider_python-0.1.2}/src/insider/scrubbing.py +0 -0
  19. {insider_python-0.1.1 → insider_python-0.1.2}/src/insider/stacktrace.py +0 -0
  20. {insider_python-0.1.1 → insider_python-0.1.2}/src/insider/transport.py +0 -0
  21. {insider_python-0.1.1 → insider_python-0.1.2}/src/insider_python.egg-info/SOURCES.txt +0 -0
  22. {insider_python-0.1.1 → insider_python-0.1.2}/src/insider_python.egg-info/dependency_links.txt +0 -0
  23. {insider_python-0.1.1 → insider_python-0.1.2}/src/insider_python.egg-info/requires.txt +0 -0
  24. {insider_python-0.1.1 → insider_python-0.1.2}/src/insider_python.egg-info/top_level.txt +0 -0
  25. {insider_python-0.1.1 → insider_python-0.1.2}/tests/test_capture.py +0 -0
  26. {insider_python-0.1.1 → insider_python-0.1.2}/tests/test_django.py +0 -0
  27. {insider_python-0.1.1 → insider_python-0.1.2}/tests/test_dsn.py +0 -0
  28. {insider_python-0.1.1 → insider_python-0.1.2}/tests/test_envelope.py +0 -0
  29. {insider_python-0.1.1 → insider_python-0.1.2}/tests/test_never_crash.py +0 -0
  30. {insider_python-0.1.1 → insider_python-0.1.2}/tests/test_safety.py +0 -0
  31. {insider_python-0.1.1 → insider_python-0.1.2}/tests/test_scrubbing.py +0 -0
  32. {insider_python-0.1.1 → insider_python-0.1.2}/tests/test_stacktrace.py +0 -0
  33. {insider_python-0.1.1 → insider_python-0.1.2}/tests/test_transport.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: insider-python
3
- Version: 0.1.1
3
+ Version: 0.1.2
4
4
  Summary: Python SDK for Insider — ship Beacons to your Insider server.
5
5
  Author: Insider
6
6
  License-Expression: MIT
@@ -9,12 +9,13 @@ Keywords: insider,telemetry,errors,monitoring,sdk
9
9
  Classifier: Development Status :: 3 - Alpha
10
10
  Classifier: Intended Audience :: Developers
11
11
  Classifier: Programming Language :: Python :: 3
12
+ Classifier: Programming Language :: Python :: 3.8
12
13
  Classifier: Programming Language :: Python :: 3.9
13
14
  Classifier: Programming Language :: Python :: 3.10
14
15
  Classifier: Programming Language :: Python :: 3.11
15
16
  Classifier: Programming Language :: Python :: 3.12
16
17
  Classifier: Topic :: Software Development :: Libraries :: Python Modules
17
- Requires-Python: >=3.9
18
+ Requires-Python: >=3.8
18
19
  Description-Content-Type: text/markdown
19
20
  Requires-Dist: urllib3>=1.26
20
21
  Provides-Extra: django
@@ -4,10 +4,10 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "insider-python"
7
- version = "0.1.1"
7
+ version = "0.1.2"
8
8
  description = "Python SDK for Insider — ship Beacons to your Insider server."
9
9
  readme = "README.md"
10
- requires-python = ">=3.9"
10
+ requires-python = ">=3.8"
11
11
  license = "MIT"
12
12
  authors = [{ name = "Insider" }]
13
13
  keywords = ["insider", "telemetry", "errors", "monitoring", "sdk"]
@@ -15,6 +15,7 @@ classifiers = [
15
15
  "Development Status :: 3 - Alpha",
16
16
  "Intended Audience :: Developers",
17
17
  "Programming Language :: Python :: 3",
18
+ "Programming Language :: Python :: 3.8",
18
19
  "Programming Language :: Python :: 3.9",
19
20
  "Programming Language :: Python :: 3.10",
20
21
  "Programming Language :: Python :: 3.11",
@@ -5,4 +5,4 @@ lookup on every beacon. Bump this and `[project].version` together when
5
5
  cutting a release.
6
6
  """
7
7
 
8
- __version__ = "0.1.1"
8
+ __version__ = "0.1.2"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: insider-python
3
- Version: 0.1.1
3
+ Version: 0.1.2
4
4
  Summary: Python SDK for Insider — ship Beacons to your Insider server.
5
5
  Author: Insider
6
6
  License-Expression: MIT
@@ -9,12 +9,13 @@ Keywords: insider,telemetry,errors,monitoring,sdk
9
9
  Classifier: Development Status :: 3 - Alpha
10
10
  Classifier: Intended Audience :: Developers
11
11
  Classifier: Programming Language :: Python :: 3
12
+ Classifier: Programming Language :: Python :: 3.8
12
13
  Classifier: Programming Language :: Python :: 3.9
13
14
  Classifier: Programming Language :: Python :: 3.10
14
15
  Classifier: Programming Language :: Python :: 3.11
15
16
  Classifier: Programming Language :: Python :: 3.12
16
17
  Classifier: Topic :: Software Development :: Libraries :: Python Modules
17
- Requires-Python: >=3.9
18
+ Requires-Python: >=3.8
18
19
  Description-Content-Type: text/markdown
19
20
  Requires-Dist: urllib3>=1.26
20
21
  Provides-Extra: django
File without changes
File without changes