syd 1.2.2__tar.gz → 1.2.3__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 (29) hide show
  1. {syd-1.2.2 → syd-1.2.3}/PKG-INFO +3 -2
  2. {syd-1.2.2 → syd-1.2.3}/pyproject.toml +2 -1
  3. {syd-1.2.2 → syd-1.2.3}/syd/__init__.py +1 -1
  4. {syd-1.2.2 → syd-1.2.3}/.gitignore +0 -0
  5. {syd-1.2.2 → syd-1.2.3}/LICENSE +0 -0
  6. {syd-1.2.2 → syd-1.2.3}/README.md +0 -0
  7. {syd-1.2.2 → syd-1.2.3}/syd/flask_deployment/__init__.py +0 -0
  8. {syd-1.2.2 → syd-1.2.3}/syd/flask_deployment/deployer.py +0 -0
  9. {syd-1.2.2 → syd-1.2.3}/syd/flask_deployment/static/__init__.py +0 -0
  10. {syd-1.2.2 → syd-1.2.3}/syd/flask_deployment/static/css/styles.css +0 -0
  11. {syd-1.2.2 → syd-1.2.3}/syd/flask_deployment/static/css/viewer.css +0 -0
  12. {syd-1.2.2 → syd-1.2.3}/syd/flask_deployment/static/js/modules/api.js +0 -0
  13. {syd-1.2.2 → syd-1.2.3}/syd/flask_deployment/static/js/modules/config.js +0 -0
  14. {syd-1.2.2 → syd-1.2.3}/syd/flask_deployment/static/js/modules/plot.js +0 -0
  15. {syd-1.2.2 → syd-1.2.3}/syd/flask_deployment/static/js/modules/state.js +0 -0
  16. {syd-1.2.2 → syd-1.2.3}/syd/flask_deployment/static/js/modules/system_controls.js +0 -0
  17. {syd-1.2.2 → syd-1.2.3}/syd/flask_deployment/static/js/modules/ui_controls.js +0 -0
  18. {syd-1.2.2 → syd-1.2.3}/syd/flask_deployment/static/js/modules/utils.js +0 -0
  19. {syd-1.2.2 → syd-1.2.3}/syd/flask_deployment/static/js/old_viewer.js +0 -0
  20. {syd-1.2.2 → syd-1.2.3}/syd/flask_deployment/static/js/viewer.js +0 -0
  21. {syd-1.2.2 → syd-1.2.3}/syd/flask_deployment/templates/__init__.py +0 -0
  22. {syd-1.2.2 → syd-1.2.3}/syd/flask_deployment/templates/index.html +0 -0
  23. {syd-1.2.2 → syd-1.2.3}/syd/flask_deployment/testing_principles.md +0 -0
  24. {syd-1.2.2 → syd-1.2.3}/syd/notebook_deployment/__init__.py +0 -0
  25. {syd-1.2.2 → syd-1.2.3}/syd/notebook_deployment/deployer.py +0 -0
  26. {syd-1.2.2 → syd-1.2.3}/syd/notebook_deployment/widgets.py +0 -0
  27. {syd-1.2.2 → syd-1.2.3}/syd/parameters.py +0 -0
  28. {syd-1.2.2 → syd-1.2.3}/syd/support.py +0 -0
  29. {syd-1.2.2 → syd-1.2.3}/syd/viewer.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: syd
3
- Version: 1.2.2
3
+ Version: 1.2.3
4
4
  Summary: A Python package for making GUIs for data science easy.
5
5
  Project-URL: Homepage, https://github.com/landoskape/syd
6
6
  Author-email: Andrew Landau <andrew+tyler+landau+getridofthisanddtheplusses@gmail.com>
@@ -12,12 +12,13 @@ Classifier: Intended Audience :: Developers
12
12
  Classifier: Intended Audience :: Science/Research
13
13
  Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
14
14
  Classifier: Operating System :: OS Independent
15
+ Classifier: Programming Language :: Python :: 3.8
15
16
  Classifier: Programming Language :: Python :: 3.9
16
17
  Classifier: Programming Language :: Python :: 3.10
17
18
  Classifier: Programming Language :: Python :: 3.11
18
19
  Classifier: Programming Language :: Python :: 3.12
19
20
  Classifier: Programming Language :: Python :: 3.13
20
- Requires-Python: >=3.9
21
+ Requires-Python: >=3.8
21
22
  Requires-Dist: flask
22
23
  Requires-Dist: ipykernel
23
24
  Requires-Dist: ipympl
@@ -10,7 +10,7 @@ authors = [
10
10
  ]
11
11
  description = "A Python package for making GUIs for data science easy."
12
12
  readme = "README.md"
13
- requires-python = ">=3.9"
13
+ requires-python = ">=3.8"
14
14
  dependencies = [
15
15
  "ipywidgets",
16
16
  "ipympl",
@@ -28,6 +28,7 @@ classifiers = [
28
28
  "Intended Audience :: Science/Research",
29
29
  "License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
30
30
  "Operating System :: OS Independent",
31
+ "Programming Language :: Python :: 3.8",
31
32
  "Programming Language :: Python :: 3.9",
32
33
  "Programming Language :: Python :: 3.10",
33
34
  "Programming Language :: Python :: 3.11",
@@ -1,4 +1,4 @@
1
- __version__ = "1.2.2"
1
+ __version__ = "1.2.3"
2
2
 
3
3
  from .viewer import make_viewer, Viewer
4
4
  from .support import show_open_servers, close_servers
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes