py10x-core 0.1.12__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.
- py10x_core-0.1.12/.coveragerc +6 -0
- py10x_core-0.1.12/.github/workflows/build.yml +32 -0
- py10x_core-0.1.12/.gitignore +6 -0
- py10x_core-0.1.12/.idea/.gitignore +4 -0
- py10x_core-0.1.12/.idea/inspectionProfiles/profiles_settings.xml +7 -0
- py10x_core-0.1.12/.idea/misc.xml +10 -0
- py10x_core-0.1.12/.idea/modules.xml +8 -0
- py10x_core-0.1.12/.idea/py10x.iml +18 -0
- py10x_core-0.1.12/.idea/ruff.xml +7 -0
- py10x_core-0.1.12/.idea/runConfigurations/collection_editor__rio_.xml +25 -0
- py10x_core-0.1.12/.idea/ryecharm-overrides.xml +11 -0
- py10x_core-0.1.12/.idea/ryecharm.xml +6 -0
- py10x_core-0.1.12/.idea/vcs.xml +6 -0
- py10x_core-0.1.12/10x-jerboa-in-desert.jpeg +0 -0
- py10x_core-0.1.12/10x-jerboa.jpeg +0 -0
- py10x_core-0.1.12/AGENTS.md +99 -0
- py10x_core-0.1.12/CHANGELOG.md +198 -0
- py10x_core-0.1.12/CODE_OF_CONDUCT.md +93 -0
- py10x_core-0.1.12/CONTRIBUTING.md +254 -0
- py10x_core-0.1.12/GETTING_STARTED.md +1421 -0
- py10x_core-0.1.12/INSTALLATION.md +322 -0
- py10x_core-0.1.12/LICENSE +21 -0
- py10x_core-0.1.12/NOTICE +88 -0
- py10x_core-0.1.12/PKG-INFO +479 -0
- py10x_core-0.1.12/README.md +418 -0
- py10x_core-0.1.12/SECURITY.md +123 -0
- py10x_core-0.1.12/conftest.py +10 -0
- py10x_core-0.1.12/core_10x/__init__.py +47 -0
- py10x_core-0.1.12/core_10x/apps/__init__.py +0 -0
- py10x_core-0.1.12/core_10x/apps/runme_1st_app.py +81 -0
- py10x_core-0.1.12/core_10x/attic/__init__.py +0 -0
- py10x_core-0.1.12/core_10x/attic/backbone/__init__.py +0 -0
- py10x_core-0.1.12/core_10x/attic/backbone/backbone_store.py +59 -0
- py10x_core-0.1.12/core_10x/attic/backbone/backbone_traitable.py +30 -0
- py10x_core-0.1.12/core_10x/attic/backbone/backbone_user.py +67 -0
- py10x_core-0.1.12/core_10x/attic/backbone/bound_data_domain.py +49 -0
- py10x_core-0.1.12/core_10x/attic/backbone/vault.py +38 -0
- py10x_core-0.1.12/core_10x/attic/data_domain.py +48 -0
- py10x_core-0.1.12/core_10x/attic/data_domain_binder.py +45 -0
- py10x_core-0.1.12/core_10x/attic/entity.py +8 -0
- py10x_core-0.1.12/core_10x/attic/package_manifest.py +85 -0
- py10x_core-0.1.12/core_10x/attic/vault/__init__.py +0 -0
- py10x_core-0.1.12/core_10x/attic/vault/sec_keys.py +133 -0
- py10x_core-0.1.12/core_10x/attic/vault/security_keys_old.py +168 -0
- py10x_core-0.1.12/core_10x/attic/vault/vault.py +56 -0
- py10x_core-0.1.12/core_10x/attic/vault/vault_traitable.py +56 -0
- py10x_core-0.1.12/core_10x/attic/vault/vault_user.py +70 -0
- py10x_core-0.1.12/core_10x/code_samples/__init__.py +0 -0
- py10x_core-0.1.12/core_10x/code_samples/directories.py +181 -0
- py10x_core-0.1.12/core_10x/code_samples/person.py +93 -0
- py10x_core-0.1.12/core_10x/concrete_traits.py +356 -0
- py10x_core-0.1.12/core_10x/conftest.py +12 -0
- py10x_core-0.1.12/core_10x/curve.py +224 -0
- py10x_core-0.1.12/core_10x/directory.py +250 -0
- py10x_core-0.1.12/core_10x/environment_variables.py +174 -0
- py10x_core-0.1.12/core_10x/exec_control.py +84 -0
- py10x_core-0.1.12/core_10x/experimental/__init__.py +0 -0
- py10x_core-0.1.12/core_10x/experimental/data_protocol_ex.py +34 -0
- py10x_core-0.1.12/core_10x/global_cache.py +121 -0
- py10x_core-0.1.12/core_10x/manual_tests/__init__.py +0 -0
- py10x_core-0.1.12/core_10x/manual_tests/calendar_test.py +35 -0
- py10x_core-0.1.12/core_10x/manual_tests/ctor_update_bug.py +58 -0
- py10x_core-0.1.12/core_10x/manual_tests/debug_graph_on.py +17 -0
- py10x_core-0.1.12/core_10x/manual_tests/debug_graphoff_inside_graph_on.py +28 -0
- py10x_core-0.1.12/core_10x/manual_tests/enum_bits_test.py +17 -0
- py10x_core-0.1.12/core_10x/manual_tests/env_vars_trivial_test.py +12 -0
- py10x_core-0.1.12/core_10x/manual_tests/existing_traitable.py +33 -0
- py10x_core-0.1.12/core_10x/manual_tests/k10x_test1.py +13 -0
- py10x_core-0.1.12/core_10x/manual_tests/named_constant_test.py +121 -0
- py10x_core-0.1.12/core_10x/manual_tests/nucleus_trivial_test.py +42 -0
- py10x_core-0.1.12/core_10x/manual_tests/polars_test.py +14 -0
- py10x_core-0.1.12/core_10x/manual_tests/py_class_test.py +4 -0
- py10x_core-0.1.12/core_10x/manual_tests/rc_test.py +42 -0
- py10x_core-0.1.12/core_10x/manual_tests/rdate_test.py +12 -0
- py10x_core-0.1.12/core_10x/manual_tests/reference_serialization_bug.py +19 -0
- py10x_core-0.1.12/core_10x/manual_tests/resource_trivial_test.py +10 -0
- py10x_core-0.1.12/core_10x/manual_tests/store_uri_test.py +6 -0
- py10x_core-0.1.12/core_10x/manual_tests/trait_definition_test.py +19 -0
- py10x_core-0.1.12/core_10x/manual_tests/trait_filter_test.py +15 -0
- py10x_core-0.1.12/core_10x/manual_tests/trait_flag_modification_test.py +42 -0
- py10x_core-0.1.12/core_10x/manual_tests/trait_modification_bug.py +26 -0
- py10x_core-0.1.12/core_10x/manual_tests/traitable_as_of_test.py +82 -0
- py10x_core-0.1.12/core_10x/manual_tests/traitable_heir_test.py +39 -0
- py10x_core-0.1.12/core_10x/manual_tests/traitable_history_test.py +41 -0
- py10x_core-0.1.12/core_10x/manual_tests/traitable_serialization_test.py +54 -0
- py10x_core-0.1.12/core_10x/manual_tests/traitable_trivial_test.py +76 -0
- py10x_core-0.1.12/core_10x/manual_tests/trivial_graph_test.py +16 -0
- py10x_core-0.1.12/core_10x/manual_tests/ts_class_association_test.py +64 -0
- py10x_core-0.1.12/core_10x/manual_tests/ts_trivial_test.py +35 -0
- py10x_core-0.1.12/core_10x/manual_tests/vault_test.py +11 -0
- py10x_core-0.1.12/core_10x/named_constant.py +425 -0
- py10x_core-0.1.12/core_10x/nucleus.py +81 -0
- py10x_core-0.1.12/core_10x/package_refactoring.py +153 -0
- py10x_core-0.1.12/core_10x/py_class.py +431 -0
- py10x_core-0.1.12/core_10x/rc.py +167 -0
- py10x_core-0.1.12/core_10x/rdate.py +339 -0
- py10x_core-0.1.12/core_10x/resource.py +166 -0
- py10x_core-0.1.12/core_10x/roman_number.py +67 -0
- py10x_core-0.1.12/core_10x/sec_keys.py +183 -0
- py10x_core-0.1.12/core_10x/testlib/__init__.py +0 -0
- py10x_core-0.1.12/core_10x/testlib/test_store.py +240 -0
- py10x_core-0.1.12/core_10x/testlib/traitable_history_tests.py +787 -0
- py10x_core-0.1.12/core_10x/testlib/ts_tests.py +280 -0
- py10x_core-0.1.12/core_10x/trait.py +385 -0
- py10x_core-0.1.12/core_10x/trait_definition.py +176 -0
- py10x_core-0.1.12/core_10x/trait_filter.py +205 -0
- py10x_core-0.1.12/core_10x/trait_method_error.py +36 -0
- py10x_core-0.1.12/core_10x/traitable.py +1164 -0
- py10x_core-0.1.12/core_10x/traitable_cli.py +153 -0
- py10x_core-0.1.12/core_10x/traitable_heir.py +33 -0
- py10x_core-0.1.12/core_10x/traitable_id.py +31 -0
- py10x_core-0.1.12/core_10x/ts_store.py +189 -0
- py10x_core-0.1.12/core_10x/ts_store_type.py +26 -0
- py10x_core-0.1.12/core_10x/ts_union.py +147 -0
- py10x_core-0.1.12/core_10x/ui_hint.py +153 -0
- py10x_core-0.1.12/core_10x/unit_tests/test_concrete_traits.py +156 -0
- py10x_core-0.1.12/core_10x/unit_tests/test_converters.py +46 -0
- py10x_core-0.1.12/core_10x/unit_tests/test_core_version.py +10 -0
- py10x_core-0.1.12/core_10x/unit_tests/test_curve.py +138 -0
- py10x_core-0.1.12/core_10x/unit_tests/test_directory.py +54 -0
- py10x_core-0.1.12/core_10x/unit_tests/test_documentation.py +172 -0
- py10x_core-0.1.12/core_10x/unit_tests/test_environment_variables.py +15 -0
- py10x_core-0.1.12/core_10x/unit_tests/test_filters.py +239 -0
- py10x_core-0.1.12/core_10x/unit_tests/test_graph.py +348 -0
- py10x_core-0.1.12/core_10x/unit_tests/test_named_constant.py +98 -0
- py10x_core-0.1.12/core_10x/unit_tests/test_rc.py +11 -0
- py10x_core-0.1.12/core_10x/unit_tests/test_rdate.py +484 -0
- py10x_core-0.1.12/core_10x/unit_tests/test_trait_method_error.py +80 -0
- py10x_core-0.1.12/core_10x/unit_tests/test_trait_modification.py +19 -0
- py10x_core-0.1.12/core_10x/unit_tests/test_traitable.py +1044 -0
- py10x_core-0.1.12/core_10x/unit_tests/test_traitable_history.py +1 -0
- py10x_core-0.1.12/core_10x/unit_tests/test_ts_store.py +1 -0
- py10x_core-0.1.12/core_10x/unit_tests/test_ts_union.py +369 -0
- py10x_core-0.1.12/core_10x/unit_tests/test_ui_nodes.py +81 -0
- py10x_core-0.1.12/core_10x/unit_tests/test_xxcalendar.py +471 -0
- py10x_core-0.1.12/core_10x/vault_utils.py +132 -0
- py10x_core-0.1.12/core_10x/xdate_time.py +136 -0
- py10x_core-0.1.12/core_10x/xnone.py +71 -0
- py10x_core-0.1.12/core_10x/xxcalendar.py +224 -0
- py10x_core-0.1.12/dev_10x/.gitignore +1 -0
- py10x_core-0.1.12/dev_10x/__init__.py +4 -0
- py10x_core-0.1.12/dev_10x/uv_sync.py +161 -0
- py10x_core-0.1.12/dev_10x/version.py +34 -0
- py10x_core-0.1.12/docs/OPEN_SOURCE_IP_CHECKLIST.md +162 -0
- py10x_core-0.1.12/infra_10x/__init__.py +4 -0
- py10x_core-0.1.12/infra_10x/manual_tests/__init__.py +0 -0
- py10x_core-0.1.12/infra_10x/manual_tests/test_misc.py +16 -0
- py10x_core-0.1.12/infra_10x/manual_tests/test_prepare_filter_and_pipeline.py +25 -0
- py10x_core-0.1.12/infra_10x/mongodb_admin.py +111 -0
- py10x_core-0.1.12/infra_10x/mongodb_store.py +346 -0
- py10x_core-0.1.12/infra_10x/mongodb_utils.py +129 -0
- py10x_core-0.1.12/infra_10x/namespace.py +101 -0
- py10x_core-0.1.12/infra_10x/unit_tests/conftest.py +14 -0
- py10x_core-0.1.12/infra_10x/unit_tests/test_infra_version.py +10 -0
- py10x_core-0.1.12/infra_10x/unit_tests/test_mongo_db.py +36 -0
- py10x_core-0.1.12/infra_10x/unit_tests/test_mongo_history.py +1 -0
- py10x_core-0.1.12/pyproject.toml +96 -0
- py10x_core-0.1.12/pytest.ini +11 -0
- py10x_core-0.1.12/ruff.toml +62 -0
- py10x_core-0.1.12/ui_10x/__init__.py +4 -0
- py10x_core-0.1.12/ui_10x/apps/__init__.py +0 -0
- py10x_core-0.1.12/ui_10x/apps/collection_editor_app.py +100 -0
- py10x_core-0.1.12/ui_10x/choice.py +212 -0
- py10x_core-0.1.12/ui_10x/collection_editor.py +135 -0
- py10x_core-0.1.12/ui_10x/concrete_trait_widgets.py +220 -0
- py10x_core-0.1.12/ui_10x/conftest.py +8 -0
- py10x_core-0.1.12/ui_10x/entity_stocker.py +173 -0
- py10x_core-0.1.12/ui_10x/examples/__init__.py +0 -0
- py10x_core-0.1.12/ui_10x/examples/_guess_word_data.py +14076 -0
- py10x_core-0.1.12/ui_10x/examples/collection_editor.py +17 -0
- py10x_core-0.1.12/ui_10x/examples/date_selector.py +14 -0
- py10x_core-0.1.12/ui_10x/examples/entity_stocker.py +18 -0
- py10x_core-0.1.12/ui_10x/examples/guess_word.py +392 -0
- py10x_core-0.1.12/ui_10x/examples/message_box.py +20 -0
- py10x_core-0.1.12/ui_10x/examples/multi_choice.py +17 -0
- py10x_core-0.1.12/ui_10x/examples/py_data_browser.py +66 -0
- py10x_core-0.1.12/ui_10x/examples/radiobox.py +29 -0
- py10x_core-0.1.12/ui_10x/examples/single_choice.py +31 -0
- py10x_core-0.1.12/ui_10x/examples/style_sheet.py +47 -0
- py10x_core-0.1.12/ui_10x/examples/trivial_entity_editor.py +18 -0
- py10x_core-0.1.12/ui_10x/platform.py +20 -0
- py10x_core-0.1.12/ui_10x/platform_interface.py +517 -0
- py10x_core-0.1.12/ui_10x/py_data_browser.py +249 -0
- py10x_core-0.1.12/ui_10x/qt6/__init__.py +0 -0
- py10x_core-0.1.12/ui_10x/qt6/conftest.py +8 -0
- py10x_core-0.1.12/ui_10x/qt6/manual_tests/__init__.py +0 -0
- py10x_core-0.1.12/ui_10x/qt6/manual_tests/basic_test.py +35 -0
- py10x_core-0.1.12/ui_10x/qt6/platform_implementation.py +275 -0
- py10x_core-0.1.12/ui_10x/qt6/utils.py +665 -0
- py10x_core-0.1.12/ui_10x/rio/__init__.py +0 -0
- py10x_core-0.1.12/ui_10x/rio/apps/examples/examples/__init__.py +22 -0
- py10x_core-0.1.12/ui_10x/rio/apps/examples/examples/components/__init__.py +3 -0
- py10x_core-0.1.12/ui_10x/rio/apps/examples/examples/components/collection_editor.py +15 -0
- py10x_core-0.1.12/ui_10x/rio/apps/examples/examples/pages/collection_editor.py +21 -0
- py10x_core-0.1.12/ui_10x/rio/apps/examples/examples/pages/login_page.py +88 -0
- py10x_core-0.1.12/ui_10x/rio/apps/examples/examples/pages/style_sheet.py +21 -0
- py10x_core-0.1.12/ui_10x/rio/apps/examples/rio.toml +14 -0
- py10x_core-0.1.12/ui_10x/rio/component_builder.py +497 -0
- py10x_core-0.1.12/ui_10x/rio/components/__init__.py +9 -0
- py10x_core-0.1.12/ui_10x/rio/components/group_box.py +31 -0
- py10x_core-0.1.12/ui_10x/rio/components/labeled_checkbox.py +18 -0
- py10x_core-0.1.12/ui_10x/rio/components/line_edit.py +37 -0
- py10x_core-0.1.12/ui_10x/rio/components/radio_button.py +32 -0
- py10x_core-0.1.12/ui_10x/rio/components/separator.py +24 -0
- py10x_core-0.1.12/ui_10x/rio/components/splitter.py +121 -0
- py10x_core-0.1.12/ui_10x/rio/components/tree_view.py +75 -0
- py10x_core-0.1.12/ui_10x/rio/conftest.py +35 -0
- py10x_core-0.1.12/ui_10x/rio/internals/__init__.py +0 -0
- py10x_core-0.1.12/ui_10x/rio/internals/app.py +192 -0
- py10x_core-0.1.12/ui_10x/rio/manual_tests/__init__.py +0 -0
- py10x_core-0.1.12/ui_10x/rio/manual_tests/basic_test.py +24 -0
- py10x_core-0.1.12/ui_10x/rio/manual_tests/splitter.py +27 -0
- py10x_core-0.1.12/ui_10x/rio/platform_implementation.py +91 -0
- py10x_core-0.1.12/ui_10x/rio/style_sheet.py +53 -0
- py10x_core-0.1.12/ui_10x/rio/unit_tests/test_collection_editor.py +68 -0
- py10x_core-0.1.12/ui_10x/rio/unit_tests/test_internals.py +630 -0
- py10x_core-0.1.12/ui_10x/rio/unit_tests/test_style_sheet.py +37 -0
- py10x_core-0.1.12/ui_10x/rio/widgets/__init__.py +46 -0
- py10x_core-0.1.12/ui_10x/rio/widgets/application.py +109 -0
- py10x_core-0.1.12/ui_10x/rio/widgets/button.py +48 -0
- py10x_core-0.1.12/ui_10x/rio/widgets/button_group.py +60 -0
- py10x_core-0.1.12/ui_10x/rio/widgets/calendar.py +23 -0
- py10x_core-0.1.12/ui_10x/rio/widgets/checkbox.py +24 -0
- py10x_core-0.1.12/ui_10x/rio/widgets/dialog.py +137 -0
- py10x_core-0.1.12/ui_10x/rio/widgets/group_box.py +27 -0
- py10x_core-0.1.12/ui_10x/rio/widgets/layout.py +34 -0
- py10x_core-0.1.12/ui_10x/rio/widgets/line_edit.py +37 -0
- py10x_core-0.1.12/ui_10x/rio/widgets/list.py +105 -0
- py10x_core-0.1.12/ui_10x/rio/widgets/message_box.py +70 -0
- py10x_core-0.1.12/ui_10x/rio/widgets/scroll_area.py +31 -0
- py10x_core-0.1.12/ui_10x/rio/widgets/spacer.py +6 -0
- py10x_core-0.1.12/ui_10x/rio/widgets/splitter.py +45 -0
- py10x_core-0.1.12/ui_10x/rio/widgets/text_edit.py +28 -0
- py10x_core-0.1.12/ui_10x/rio/widgets/tree.py +89 -0
- py10x_core-0.1.12/ui_10x/rio/widgets/unit_tests/test_button.py +101 -0
- py10x_core-0.1.12/ui_10x/rio/widgets/unit_tests/test_button_group.py +33 -0
- py10x_core-0.1.12/ui_10x/rio/widgets/unit_tests/test_calendar.py +114 -0
- py10x_core-0.1.12/ui_10x/rio/widgets/unit_tests/test_checkbox.py +109 -0
- py10x_core-0.1.12/ui_10x/rio/widgets/unit_tests/test_group_box.py +158 -0
- py10x_core-0.1.12/ui_10x/rio/widgets/unit_tests/test_label.py +43 -0
- py10x_core-0.1.12/ui_10x/rio/widgets/unit_tests/test_line_edit.py +140 -0
- py10x_core-0.1.12/ui_10x/rio/widgets/unit_tests/test_list.py +146 -0
- py10x_core-0.1.12/ui_10x/table_header_view.py +305 -0
- py10x_core-0.1.12/ui_10x/table_view.py +174 -0
- py10x_core-0.1.12/ui_10x/trait_editor.py +189 -0
- py10x_core-0.1.12/ui_10x/trait_widget.py +131 -0
- py10x_core-0.1.12/ui_10x/traitable_editor.py +200 -0
- py10x_core-0.1.12/ui_10x/traitable_view.py +131 -0
- py10x_core-0.1.12/ui_10x/unit_tests/conftest.py +8 -0
- py10x_core-0.1.12/ui_10x/unit_tests/test_platform.py +9 -0
- py10x_core-0.1.12/ui_10x/utils.py +661 -0
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
name: Publish py10x-core to PyPI (uv)
|
|
2
|
+
on:
|
|
3
|
+
push:
|
|
4
|
+
tags:
|
|
5
|
+
- "v*"
|
|
6
|
+
workflow_dispatch:
|
|
7
|
+
|
|
8
|
+
jobs:
|
|
9
|
+
publish:
|
|
10
|
+
name: Build and publish
|
|
11
|
+
runs-on: ubuntu-latest
|
|
12
|
+
permissions:
|
|
13
|
+
id-token: write
|
|
14
|
+
contents: read
|
|
15
|
+
|
|
16
|
+
steps:
|
|
17
|
+
- uses: actions/checkout@v4
|
|
18
|
+
|
|
19
|
+
- name: Set up uv
|
|
20
|
+
uses: astral-sh/setup-uv@v5
|
|
21
|
+
with:
|
|
22
|
+
enable-cache: true
|
|
23
|
+
cache-dependency-glob: "**/pyproject.toml"
|
|
24
|
+
|
|
25
|
+
- name: Set up Python
|
|
26
|
+
run: uv python install 3.12
|
|
27
|
+
|
|
28
|
+
- name: Build distributions
|
|
29
|
+
run: uv build
|
|
30
|
+
|
|
31
|
+
- name: Publish to PyPI
|
|
32
|
+
run: uv publish
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<project version="4">
|
|
3
|
+
<component name="Black">
|
|
4
|
+
<option name="sdkName" value="Python 3.13 (py10x)" />
|
|
5
|
+
</component>
|
|
6
|
+
<component name="ProjectRootManager" version="2" project-jdk-name="Python 3.11 (py10x)" project-jdk-type="Python SDK" />
|
|
7
|
+
<component name="PythonCompatibilityInspectionAdvertiser">
|
|
8
|
+
<option name="version" value="3" />
|
|
9
|
+
</component>
|
|
10
|
+
</project>
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<module type="PYTHON_MODULE" version="4">
|
|
3
|
+
<component name="NewModuleRootManager">
|
|
4
|
+
<content url="file://$MODULE_DIR$/../cxx10x/core_10x/cmake-build-debug" />
|
|
5
|
+
<content url="file://$MODULE_DIR$/../cxx10x/infra_10x/cmake-build-debug" />
|
|
6
|
+
<content url="file://$MODULE_DIR$">
|
|
7
|
+
<excludeFolder url="file://$MODULE_DIR$/.venv" />
|
|
8
|
+
</content>
|
|
9
|
+
<content url="file://$MODULE_DIR$/../rio">
|
|
10
|
+
<excludeFolder url="file://$MODULE_DIR$/../rio/.venv" />
|
|
11
|
+
</content>
|
|
12
|
+
<orderEntry type="jdk" jdkName="Python 3.11 (py10x)" jdkType="Python SDK" />
|
|
13
|
+
<orderEntry type="sourceFolder" forTests="false" />
|
|
14
|
+
</component>
|
|
15
|
+
<component name="TestRunnerService">
|
|
16
|
+
<option name="PROJECT_TEST_RUNNER" value="py.test" />
|
|
17
|
+
</component>
|
|
18
|
+
</module>
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
<component name="ProjectRunConfigurationManager">
|
|
2
|
+
<configuration default="false" name="collection_editor (rio)" type="PythonConfigurationType" factoryName="Python">
|
|
3
|
+
<module name="py10x" />
|
|
4
|
+
<option name="ENV_FILES" value="" />
|
|
5
|
+
<option name="INTERPRETER_OPTIONS" value="" />
|
|
6
|
+
<option name="PARENT_ENVS" value="true" />
|
|
7
|
+
<envs>
|
|
8
|
+
<env name="UI_PLATFORM" value="Qt6" />
|
|
9
|
+
</envs>
|
|
10
|
+
<option name="SDK_HOME" value="" />
|
|
11
|
+
<option name="WORKING_DIRECTORY" value="$PROJECT_DIR$/ui_10x/examples" />
|
|
12
|
+
<option name="IS_MODULE_SDK" value="true" />
|
|
13
|
+
<option name="ADD_CONTENT_ROOTS" value="true" />
|
|
14
|
+
<option name="ADD_SOURCE_ROOTS" value="true" />
|
|
15
|
+
<EXTENSION ID="PythonCoverageRunConfigurationExtension" runner="coverage.py" />
|
|
16
|
+
<option name="SCRIPT_NAME" value="$PROJECT_DIR$/ui_10x/examples/collection_editor.py" />
|
|
17
|
+
<option name="PARAMETERS" value="" />
|
|
18
|
+
<option name="SHOW_COMMAND_LINE" value="false" />
|
|
19
|
+
<option name="EMULATE_TERMINAL" value="false" />
|
|
20
|
+
<option name="MODULE_MODE" value="false" />
|
|
21
|
+
<option name="REDIRECT_INPUT" value="false" />
|
|
22
|
+
<option name="INPUT_FILE" value="" />
|
|
23
|
+
<method v="2" />
|
|
24
|
+
</configuration>
|
|
25
|
+
</component>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<project version="4">
|
|
3
|
+
<component name="insyncwithfoo.ryecharm.configurations.ruff.Override">
|
|
4
|
+
<option name="names">
|
|
5
|
+
<map>
|
|
6
|
+
<entry key="crossPlatformExecutableResolution" value="true" />
|
|
7
|
+
<entry key="executable" value="true" />
|
|
8
|
+
</map>
|
|
9
|
+
</option>
|
|
10
|
+
</component>
|
|
11
|
+
</project>
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
## py10x-core – Guide for AI Agents
|
|
2
|
+
|
|
3
|
+
This file is a **meta-guide** for tools and AI agents working in this repo.
|
|
4
|
+
It points to canonical docs and records only the minimal, project-specific rules that agents must obey.
|
|
5
|
+
|
|
6
|
+
---
|
|
7
|
+
|
|
8
|
+
## 1. Where canonical knowledge lives
|
|
9
|
+
|
|
10
|
+
- **High-level overview**: see `README.md`.
|
|
11
|
+
- **Installation / environment details**: see `INSTALLATION.md`.
|
|
12
|
+
- **Concepts, traitables, getters/setters, storage, execution modes**: see `GETTING_STARTED.md`.
|
|
13
|
+
- **Contribution workflow, code style, test layout**: see `CONTRIBUTING.md`.
|
|
14
|
+
- **Security, changelog, community**: see `SECURITY.md`, `CHANGELOG.md`, `CODE_OF_CONDUCT.md`.
|
|
15
|
+
- **Low-level traitable implementation details**: see `core_10x/traitable.py` and existing tests in `core_10x/unit_tests/`.
|
|
16
|
+
|
|
17
|
+
Agents should **link to and rely on those files**, not duplicate them here.
|
|
18
|
+
|
|
19
|
+
---
|
|
20
|
+
|
|
21
|
+
## 2. Environment & tooling rules for agents
|
|
22
|
+
|
|
23
|
+
- **Use UV and the project venv**
|
|
24
|
+
- Assume development happens via `uv` and a local `.venv`.
|
|
25
|
+
- When suggesting or running commands, prefer:
|
|
26
|
+
- `uv sync --all-extras` for dependency setup.
|
|
27
|
+
- `uv run ...` for Python tooling (`pytest`, `ruff`, etc.).
|
|
28
|
+
|
|
29
|
+
- **Respect C++ / cxx10x backend**
|
|
30
|
+
- Treat `py10x-kernel` / `py10x-infra` (from `cxx10x`) as **opaque C++ backends**.
|
|
31
|
+
- Do **not** try to reimplement or bypass them in Python; use the public Python APIs.
|
|
32
|
+
|
|
33
|
+
- **MongoDB & UI assumptions**
|
|
34
|
+
- Some tests require a local passwordless MongoDB on port 27017.
|
|
35
|
+
- UI work should assume Rio/Qt backends as configured in `INSTALLATION.md` / `pyproject.toml`.
|
|
36
|
+
|
|
37
|
+
For any environment ambiguity, favor the patterns and instructions in `INSTALLATION.md` and `CONTRIBUTING.md`.
|
|
38
|
+
|
|
39
|
+
---
|
|
40
|
+
|
|
41
|
+
## 3. Traitable invariants agents must preserve
|
|
42
|
+
|
|
43
|
+
Most important invariants are around `core_10x.traitable.Traitable` and are documented in `GETTING_STARTED.md` and `core_10x/traitable.py`.
|
|
44
|
+
Agents must **not** violate the following:
|
|
45
|
+
|
|
46
|
+
- **Construction & initialization**
|
|
47
|
+
- **Never override `__init__`** on subclasses of `Traitable`; use `__post_init__` instead.
|
|
48
|
+
- Only use `_replace=True` in constructors when you intentionally want to update non-ID traits of an existing entity with the same ID.
|
|
49
|
+
|
|
50
|
+
- **Trait definitions**
|
|
51
|
+
- Always provide a **type annotation** for each trait, and use `T(...)` / `RT(...)` / `M(...)` as in the existing code.
|
|
52
|
+
- Do not change the meaning of ID vs ID_LIKE vs regular vs runtime traits; follow the patterns and explanations in `GETTING_STARTED.md` (“Core Concepts”, “Object Identification System”).
|
|
53
|
+
|
|
54
|
+
- **Getters / setters / converters**
|
|
55
|
+
- Follow the existing naming contracts (`*_get`, `*_set`, `*_from_str`, `*_from_any_xstr`).
|
|
56
|
+
- Keep getters side-effect free; put validation / cross-field updates into setters.
|
|
57
|
+
|
|
58
|
+
- **Storage & identity**
|
|
59
|
+
- Maintain the shared-by-ID semantics: instances with the same ID share trait values.
|
|
60
|
+
- Respect storage contexts (`CACHE_ONLY`, `MongoStore.instance(...)`) and do not introduce ad-hoc persistence mechanisms.
|
|
61
|
+
|
|
62
|
+
Before changing anything under `core_10x/traitable.py` or traitable-heavy code, agents should:
|
|
63
|
+
- Read the relevant sections of `GETTING_STARTED.md`.
|
|
64
|
+
- Scan the corresponding tests in `core_10x/unit_tests/` to mirror existing patterns.
|
|
65
|
+
|
|
66
|
+
---
|
|
67
|
+
|
|
68
|
+
## 4. Testing & layout expectations
|
|
69
|
+
|
|
70
|
+
- **Test placement**
|
|
71
|
+
- Core logic tests belong in `core_10x/unit_tests/`.
|
|
72
|
+
- UI tests belong in `ui_10x/unit_tests/` or backend-specific test folders.
|
|
73
|
+
- Infra/storage tests belong in `infra_10x/unit_tests/`.
|
|
74
|
+
|
|
75
|
+
- **How to run tests / lints**
|
|
76
|
+
- Prefer:
|
|
77
|
+
- `uv run pytest` (or narrower paths) for tests.
|
|
78
|
+
- `uv run ruff check .` and `uv run ruff format .` for linting/formatting.
|
|
79
|
+
|
|
80
|
+
When adding new functionality, agents should **add or update tests** in the appropriate suite following nearby examples, rather than inventing new test patterns.
|
|
81
|
+
|
|
82
|
+
---
|
|
83
|
+
|
|
84
|
+
## 5. Default agent behavior in this repo
|
|
85
|
+
|
|
86
|
+
- **Prefer existing patterns over new abstractions**
|
|
87
|
+
- When in doubt, copy the style and structure from nearby code and tests instead of inventing a new mini-framework.
|
|
88
|
+
|
|
89
|
+
- **Minimize duplication**
|
|
90
|
+
- If some behavior is already described in `README.md`, `GETTING_STARTED.md`, or tests, link or reference it rather than restating it.
|
|
91
|
+
|
|
92
|
+
- **Be conservative with Traitable changes**
|
|
93
|
+
- Any changes in this package are potentially high impact.
|
|
94
|
+
- Such changes should:
|
|
95
|
+
- Be as small/local as possible.
|
|
96
|
+
- Include focused tests.
|
|
97
|
+
- Keep public semantics consistent with existing docs unless the change is explicitly a breaking redesign.
|
|
98
|
+
|
|
99
|
+
|
|
@@ -0,0 +1,198 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file.
|
|
4
|
+
|
|
5
|
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
|
+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
|
+
|
|
8
|
+
## [0.1.12] - 2026-02-12
|
|
9
|
+
### Changed
|
|
10
|
+
- **Package rename:** This package is now **py10x-core**. Updated throughout: `pyproject.toml`, README, NOTICE, docs, and code references.
|
|
11
|
+
|
|
12
|
+
## [0.1.11] - 2026-02-11
|
|
13
|
+
|
|
14
|
+
### Added
|
|
15
|
+
- **uv-sync installable command**: `uv_sync` available as an installable CLI command when using dev_10x.
|
|
16
|
+
|
|
17
|
+
### Changed
|
|
18
|
+
- **C++ package rename**: The native C++ dependency is now **py10x-kernel**. Updated throughout: `pyproject.toml`, README, NOTICE, docs, and code references; license URL now `py10x_kernel`.
|
|
19
|
+
- **dev_10x.uv_sync**: Reduced verbosity; avoids unnecessary rebuilds; re-exec on Windows for correct environment; improved behavior when locating `pyproject.toml` (checks current directory).
|
|
20
|
+
- **dev_10x.uv_sync**: Fixed info message for user profile.
|
|
21
|
+
- **Documentation**: README updates and merged redundant sections.
|
|
22
|
+
|
|
23
|
+
## [0.1.10] - 2026-02-09
|
|
24
|
+
|
|
25
|
+
### Added
|
|
26
|
+
- **Dynamic versioning**: Version read from `dev_10x.version`; `core_10x`, `infra_10x`, and `ui_10x` expose `__version__` with fallback when `dev_10x` is not installed.
|
|
27
|
+
- **dev_10x.uv_sync**: Profile-based `uv sync` helper (e.g. `user`, `domain-dev`, `py10x-dev`, `py10x-core-dev`) that injects `[tool.uv.sources]` for `py10x-core`, `py10x-kernel`, and `py10x-infra` from git or local paths.
|
|
28
|
+
- **Version tests**: `core_10x/unit_tests/test_version.py` and `infra_10x/unit_tests/test_version.py` assert package versions are set (no `0.0.0` or `unknown`).
|
|
29
|
+
|
|
30
|
+
### Changed
|
|
31
|
+
- **Documentation links**: Git and doc references updated from `10X-LLC` to `10x-software`; GETTING_STARTED, INSTALLATION, README, and CONTRIBUTING use full GitHub URLs where appropriate.
|
|
32
|
+
- **C++ dependency constraints**: Relaxed from exact (`==0.1.9`) to `>=0.1.9,<0.2.0` to allow minor non-breaking releases.
|
|
33
|
+
- **Build**: `pyproject.toml` uses `dynamic = ["version"]` and version-file; dev dependencies include `tomlkit` and `licensecheck`; package list includes `dev_10x`.
|
|
34
|
+
|
|
35
|
+
## [0.1.9] - 2026-02-08
|
|
36
|
+
|
|
37
|
+
### Added
|
|
38
|
+
- **Verifiers documentation**: GETTING_STARTED.md section “Verifiers (Validation on verify() and save())” describing `*_verify` methods, that they run only on `verify()` or `save()` (not on assignment), and examples.
|
|
39
|
+
- **Verifier tests**: `test_verify_success`, `test_verify_fails_when_verifier_returns_error`, `test_verify_not_called_on_set`, and `test_serialize_runtime_endogenous_reference` in `core_10x/unit_tests/test_traitable.py`.
|
|
40
|
+
|
|
41
|
+
### Changed
|
|
42
|
+
- **Trait**: `Trait` now uses a custom metaclass and `__slots__`; default `fmt` uses `t_def.fmt or trait.s_fmt`; `s_ui_hint` and `s_fmt` moved to class-level defaults.
|
|
43
|
+
- **pyproject**: Version set to 0.1.9; dependency pins for py10x c++ packages.
|
|
44
|
+
|
|
45
|
+
## [0.1.8] - 2026-02-06
|
|
46
|
+
|
|
47
|
+
### Added
|
|
48
|
+
- **Traitable.verify()**: Implemented using `BTraitable.verify_value(trait)`; checks `NOT_EMPTY` and per-trait `f_verify`; error header via `RC.prepend_error_header()`.
|
|
49
|
+
- **TsStore.populate()**: New method for server-side population of params (e.g. `_who`, `_at`) in serialized data; subclasses may override.
|
|
50
|
+
|
|
51
|
+
### Changed
|
|
52
|
+
- **Attic**: Unused code moved to `core_10x/attic/` (backbone, vault, data_domain, entity, package_manifest).
|
|
53
|
+
- Package and documentation refer to the pip-installable package as **py10x-core** (hyphen); repo path remains **py10x**.
|
|
54
|
+
- README: early-preview disclaimer; licensing/attribution and authors sections updated.
|
|
55
|
+
- CHANGELOG: version order (newest first), 0.1.7 and 0.1.8 entries.
|
|
56
|
+
|
|
57
|
+
## [0.1.7] - 2026-02-05
|
|
58
|
+
|
|
59
|
+
### Changed
|
|
60
|
+
- README image URL for PyPI compatibility
|
|
61
|
+
- OS compatibility classifiers (Windows, Linux, MacOS)
|
|
62
|
+
|
|
63
|
+
## [0.1.6] - 2026-02-05
|
|
64
|
+
|
|
65
|
+
### Changed
|
|
66
|
+
- OS compatibility tagging
|
|
67
|
+
- Inclusion of NOTICE
|
|
68
|
+
|
|
69
|
+
## [0.1.5] - 2026-02-05
|
|
70
|
+
|
|
71
|
+
### Changed
|
|
72
|
+
- README image URL for PyPI compatibility
|
|
73
|
+
- Development status classifier set to Beta
|
|
74
|
+
- CI: uv cache keyed by pyproject.toml; optional uv lock --upgrade step removed
|
|
75
|
+
|
|
76
|
+
## [0.1.4] - 2026-02-04
|
|
77
|
+
|
|
78
|
+
### Added
|
|
79
|
+
- **Traitable lifecycle**: `__post_init__` hook for subclass customization; overriding `__init__` is no longer allowed (use `__post_init__` instead)
|
|
80
|
+
- **Traitable updates**: `_replace` constructor parameter and `new_or_replace()` for updating non-ID traits of an existing entity by ID
|
|
81
|
+
- **AsOf context**: Time-travel queries for traitables that keep history; generalized to subclasses and all history-keeping traitable classes; graceful handling for classes that do not keep history
|
|
82
|
+
- **Per-class store association**: Different store (e.g. TsStore) per traitable class via ts-class association; `use_ts_store_per_class` and related configuration
|
|
83
|
+
- **TsStore / TsCollection**: Abstract store API; `TsStore` resource type, `TsUnion`; `store_class()` registration; `TsDuplicateKeyError`; collection `copy_to`
|
|
84
|
+
- **Backbone and vault**: `core_10x.backbone` (backbone_store, vault, namespace, bound_data_domain) and `core_10x.vault` (vault, vault_user, vault_traitable, sec_keys) for credentials and lightweight backbone
|
|
85
|
+
- **TraitableHeir**: Traitable that delegates trait values from a grantor traitable (`_grantor`); heir getters and serialization that omit unset grantor traits
|
|
86
|
+
- **Environment variables**: `core_10x.environment_variables` with typed env vars, classproperty getters, optional `*_apply` hooks, and `AssertVar` for required vars
|
|
87
|
+
- **Rdate**: Business-day roll rules (preceding, following, modified preceding/following) and calendar-aware date utilities in `core_10x.rdate`
|
|
88
|
+
- **NamedConstant**: `core_10x.named_constant` with `NamedConstant`, `NamedConstantTable`, and `cls.item(symbol_name)` lookup
|
|
89
|
+
- **Testlib**: Shared test utilities in `core_10x.testlib` (test_store, traitable_history_tests, ts_tests)
|
|
90
|
+
- **Trait modification**: Unset trait default in trait modification; support `None` as `flags_to_set` (clearer than `BFlags(0)`)
|
|
91
|
+
- **UI**: TraitableView omits hints with `widget_type` NONE; `collection_editor_app` in `ui_10x.apps`
|
|
92
|
+
- **AGENTS.md**: Meta-guide for AI agents and tools working in the repo (canonical docs, tooling, traitable invariants, test layout)
|
|
93
|
+
|
|
94
|
+
### Changed
|
|
95
|
+
- **Package and branding**: C++ packages renamed to `py10x_kernel` and `py10x_infra` (from core_10x_i / infra_10x_i); email domain updates
|
|
96
|
+
- **Python**: Requires Python 3.11+ (up to <3.13) per pyproject.toml
|
|
97
|
+
- **Rio UI**: Upgraded to Rio 0.12
|
|
98
|
+
- **Dependencies**: Version bumps for numpy, cryptography, pymongo, etc.; keyring and requests added where needed
|
|
99
|
+
- **Lint/format**: Ruff rules relaxed and applied consistently
|
|
100
|
+
|
|
101
|
+
### Fixed
|
|
102
|
+
- `existing_instance_by_id(_throw=False)` for runtime objects when instance does not exist (with C++ update)
|
|
103
|
+
- AsOf context exception handling when AsOf threw on enter (invalid BCP left on stack)
|
|
104
|
+
- Revision handling for immutable entities
|
|
105
|
+
- Rejection of unstable class names containing `__main__` or `<locals>`
|
|
106
|
+
- Filter serialization
|
|
107
|
+
- Runtime anonymous traitable traits no longer required to be embedded
|
|
108
|
+
- Runtime endogenous serialization and related checks (tests)
|
|
109
|
+
- Improved C++ exception traces
|
|
110
|
+
|
|
111
|
+
## [0.1.3] - (pre-release development)
|
|
112
|
+
|
|
113
|
+
No separate changelog; see Version History below.
|
|
114
|
+
|
|
115
|
+
## [0.1.2] - 2024-12-19
|
|
116
|
+
|
|
117
|
+
### Added
|
|
118
|
+
- Initial pre-release
|
|
119
|
+
- Core data modeling with `Traitable` framework
|
|
120
|
+
- Trait-based traitable definitions with type safety
|
|
121
|
+
- Object identification system (endogenous/exogenous traitables)
|
|
122
|
+
- Serialization and deserialization framework
|
|
123
|
+
- Storage integration with MongoDB store
|
|
124
|
+
- Cross-platform UI components focused on traitable editing (Rio and Qt6 backends)
|
|
125
|
+
- MongoDB integration via `infra_10x`
|
|
126
|
+
- Built-in caching system for trait values and entity state
|
|
127
|
+
- Manual resource management using context managers
|
|
128
|
+
- Comprehensive test suite
|
|
129
|
+
|
|
130
|
+
### Core Features
|
|
131
|
+
- **Traitable Framework**: Traitable modeling with traits, validation, and persistence
|
|
132
|
+
- **Object Identification**: Endogenous traitables (with ID traits) share trait values globally by ID, exogenous traitables get auto-generated UUIDs
|
|
133
|
+
- **Dependency Graph**: Automatic computation of trait values and dependency tracking
|
|
134
|
+
- **Seamless UI Framework**: Cross-platform components with automatic framework selection
|
|
135
|
+
- **Storage Integration**: MongoDB store with revision tracking and flexible data persistence
|
|
136
|
+
- **Infrastructure**: Manual resource management (enterprise resource management planned for future release)
|
|
137
|
+
|
|
138
|
+
### UI Components
|
|
139
|
+
- Focused on traitable editing and management
|
|
140
|
+
- CollectionEditor for traitable collections
|
|
141
|
+
- TraitableEditor for individual traitable editing
|
|
142
|
+
- LineEdit, TextEdit, PushButton, Label
|
|
143
|
+
- Layout components (VBoxLayout, HBoxLayout, FormLayout)
|
|
144
|
+
- Dialog, MessageBox, GroupBox
|
|
145
|
+
- ListWidget, TreeWidget, CalendarWidget
|
|
146
|
+
- ScrollArea, Splitter, Spacer
|
|
147
|
+
- RadioButton, CheckBox, Separator
|
|
148
|
+
|
|
149
|
+
### Infrastructure
|
|
150
|
+
- Storage integration with MongoDB store
|
|
151
|
+
- Collection operations (CRUD, querying, indexing)
|
|
152
|
+
- Revision-based conflict resolution
|
|
153
|
+
- Manual resource management using context managers
|
|
154
|
+
|
|
155
|
+
### Dependencies
|
|
156
|
+
- Python 3.11+ support
|
|
157
|
+
- Core dependencies: numpy, python-dateutil, cryptography
|
|
158
|
+
- C++ implementation: our core and infra packages
|
|
159
|
+
- UI backends: Rio UI, PyQt6
|
|
160
|
+
- Infrastructure: pymongo
|
|
161
|
+
- Development: pytest, ruff, playwright
|
|
162
|
+
|
|
163
|
+
---
|
|
164
|
+
|
|
165
|
+
## Version History
|
|
166
|
+
|
|
167
|
+
- **0.1.12**: This package rename to `py10x-universe` → `py10x-core`; docs updated
|
|
168
|
+
- **0.1.11**: C++ package rename `py10x-core` → `py10x-kernel`; `uv-sync` installable command; uv_sync verbosity/rebuilds/Windows/doc fixes
|
|
169
|
+
- **0.1.10**: Dynamic versioning (dev_10x), dev_10x.uv_sync, version tests; doc links to 10x-software; C++ deps relaxed to >=0.1.9,<0.2.0
|
|
170
|
+
- **0.1.9**: Verifiers docs and tests; Trait metaclass/slots and fmt handling; pyproject 0.1.9
|
|
171
|
+
- **0.1.8**: Traitable.verify(), TsStore.populate(), RC.prepend_error_header; attic move; entity_filter removed; naming (`py10x-universe`, `py10x-core`, `py10x-infra`); README disclaimer
|
|
172
|
+
- **0.1.7**: OS classifiers, README image URL
|
|
173
|
+
- **0.1.6**: NOTICE, OS tagging, README image
|
|
174
|
+
- **0.1.5**: Beta classifier, CI cache
|
|
175
|
+
- **0.1.4**: Pre-release; AsOf, per-class stores, backbone/vault, TraitableHeir, env vars, rdate, testlib, lifecycle and trait-modification improvements
|
|
176
|
+
- **0.1.3**: Pre-release development version
|
|
177
|
+
- **0.1.2**: Pre-release development version
|
|
178
|
+
- **0.1.1**: Pre-release development version
|
|
179
|
+
- **0.1.0**: Initial development version
|
|
180
|
+
|
|
181
|
+
## Migration Guide
|
|
182
|
+
|
|
183
|
+
### From Development Versions
|
|
184
|
+
|
|
185
|
+
No migration from previous versions is necessary - package versions will automatically be updated when installing.
|
|
186
|
+
|
|
187
|
+
### Breaking Changes
|
|
188
|
+
|
|
189
|
+
- **0.1.12**: This package renamed: use **py10x-core** instead of `py10x-universe` in dependencies, CI, or local installs.
|
|
190
|
+
- **0.1.11**: C++ dependency renamed: use **py10x-kernel** instead of `py10x-core` in dependencies, CI, or local installs.
|
|
191
|
+
- **0.1.4**: Subclasses of `Traitable` must not override `__init__`; use `__post_init__` for customization. Python 3.10 no longer supported (3.11+ required). C++ packages are now `py10x-core` and `py10x-infra` (rename from core_10x_i / infra_10x_i if you referenced them directly).
|
|
192
|
+
- **0.1.2 and earlier**: Initial pre-release; no breaking changes from previous versions.
|
|
193
|
+
|
|
194
|
+
|
|
195
|
+
## Acknowledgments
|
|
196
|
+
|
|
197
|
+
- Relies on py10x-kernel and py10x-infra packages containing the underlying C++ implementation
|
|
198
|
+
- UI components based on Rio and Qt6 frameworks, focused on traitable editing and management
|
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
# Contributor Covenant Code of Conduct
|
|
2
|
+
|
|
3
|
+
## Our Pledge
|
|
4
|
+
|
|
5
|
+
We as members, contributors, and leaders pledge to make participation in our community a harassment-free experience for everyone, regardless of age, body size, visible or invisible disability, ethnicity, sex characteristics, gender identity and expression, level of experience, education, socio-economic status, nationality, personal appearance, race, caste, color, religion, or sexual identity and orientation.
|
|
6
|
+
|
|
7
|
+
We pledge to act and interact in ways that contribute to an open, welcoming, diverse, inclusive, and healthy community.
|
|
8
|
+
|
|
9
|
+
## Our Standards
|
|
10
|
+
|
|
11
|
+
Examples of behavior that contributes to a positive environment for our community include:
|
|
12
|
+
|
|
13
|
+
* Using welcoming and inclusive language
|
|
14
|
+
* Being respectful of differing viewpoints and experiences
|
|
15
|
+
* Gracefully accepting constructive criticism
|
|
16
|
+
* Focusing on what is best for the community
|
|
17
|
+
* Showing empathy towards other community members
|
|
18
|
+
|
|
19
|
+
Examples of unacceptable behavior include:
|
|
20
|
+
|
|
21
|
+
* The use of sexualized language or imagery, and sexual attention or advances of any kind
|
|
22
|
+
* Trolling, insulting or derogatory comments, and personal or political attacks
|
|
23
|
+
* Public or private harassment
|
|
24
|
+
* Publishing others' private information, such as a physical or email address, without their explicit permission
|
|
25
|
+
* Other conduct which could reasonably be considered inappropriate in a professional setting
|
|
26
|
+
|
|
27
|
+
## Enforcement Responsibilities
|
|
28
|
+
|
|
29
|
+
Community leaders are responsible for clarifying and enforcing our standards of acceptable behavior and will take appropriate and fair corrective action in response to any behavior that they deem inappropriate, threatening, offensive, or harmful.
|
|
30
|
+
|
|
31
|
+
## Reporting
|
|
32
|
+
|
|
33
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be reported to the community leaders responsible for enforcement at [Discord](https://discord.gg/m7AQSXfFwf). All complaints will be reviewed and investigated promptly and fairly.
|
|
34
|
+
|
|
35
|
+
All community leaders are obligated to respect the privacy and security of the reporter of any incident.
|
|
36
|
+
|
|
37
|
+
Community leaders have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, and will communicate reasons for moderation decisions when appropriate.
|
|
38
|
+
|
|
39
|
+
## Scope
|
|
40
|
+
|
|
41
|
+
This Code of Conduct applies within all community spaces, and also applies when an individual is officially representing the community in public spaces. Examples of representing our community include using an official project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event.
|
|
42
|
+
|
|
43
|
+
## Enforcement
|
|
44
|
+
|
|
45
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be reported to the community leaders responsible for enforcement at:
|
|
46
|
+
|
|
47
|
+
- **Email**: conduct@10x-software.org
|
|
48
|
+
|
|
49
|
+
All complaints will be reviewed and investigated promptly and fairly.
|
|
50
|
+
|
|
51
|
+
All community leaders are obligated to respect the privacy and security of the reporter of any incident.
|
|
52
|
+
|
|
53
|
+
## Enforcement Guidelines
|
|
54
|
+
|
|
55
|
+
Community leaders will follow these Community Impact Guidelines in determining the consequences for any action they deem in violation of this Code of Conduct:
|
|
56
|
+
|
|
57
|
+
### 1. Correction
|
|
58
|
+
|
|
59
|
+
**Community Impact**: Use of inappropriate language or other behavior deemed unprofessional or unwelcome in the community.
|
|
60
|
+
|
|
61
|
+
**Consequence**: A private, written warning from community leaders, providing clarity around the nature of the violation and an explanation of why the behavior was inappropriate. A public apology may be requested.
|
|
62
|
+
|
|
63
|
+
### 2. Warning
|
|
64
|
+
|
|
65
|
+
**Community Impact**: A violation through a single incident or series of actions.
|
|
66
|
+
|
|
67
|
+
**Consequence**: A warning with consequences for continued behavior. No interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, for a specified period of time. This includes avoiding interactions in community spaces as well as external channels like social media. Violating these terms may lead to a temporary or permanent ban.
|
|
68
|
+
|
|
69
|
+
### 3. Temporary Ban
|
|
70
|
+
|
|
71
|
+
**Community Impact**: A serious violation of community standards, including sustained inappropriate behavior.
|
|
72
|
+
|
|
73
|
+
**Consequence**: A temporary ban from any sort of interaction or public communication with the community for a specified period of time. No public or private interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, is allowed during this period. Violating these terms may lead to a permanent ban.
|
|
74
|
+
|
|
75
|
+
### 4. Permanent Ban
|
|
76
|
+
|
|
77
|
+
**Community Impact**: Demonstrating a pattern of violation of community standards, including sustained inappropriate behavior, harassment of an individual, or aggression toward or disparagement of classes of individuals.
|
|
78
|
+
|
|
79
|
+
**Consequence**: A permanent ban from any sort of public interaction within the community.
|
|
80
|
+
|
|
81
|
+
## Attribution
|
|
82
|
+
|
|
83
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 2.1, available at [https://www.contributor-covenant.org/version/2/1/code_of_conduct.html][v2.1].
|
|
84
|
+
|
|
85
|
+
Community Impact Guidelines were inspired by [Mozilla's code of conduct enforcement ladder][Mozilla CoC].
|
|
86
|
+
|
|
87
|
+
For answers to common questions about this code of conduct, see the FAQ at [https://www.contributor-covenant.org/faq][FAQ]. Translations are available at [https://www.contributor-covenant.org/translations][translations].
|
|
88
|
+
|
|
89
|
+
[homepage]: https://www.contributor-covenant.org
|
|
90
|
+
[v2.1]: https://www.contributor-covenant.org/version/2/1/code_of_conduct.html
|
|
91
|
+
[Mozilla CoC]: https://github.com/mozilla/diversity
|
|
92
|
+
[FAQ]: https://www.contributor-covenant.org/faq
|
|
93
|
+
[translations]: https://www.contributor-covenant.org/translations
|