stream-download-convert-upload-merge-15-refactor-rdf-converters #45

Open
brent.edwards wants to merge 99 commits from stream-download-convert-upload-merge-15-refactor-rdf-converters into master
Member

Trying to merge as much as possible into the master branch.

Trying to merge as much as possible into the master branch.
Co-authored-by: aider (openrouter/anthropic/claude-sonnet-4) <aider@aider.chat>
Co-authored-by: aider (openrouter/anthropic/claude-sonnet-4) <aider@aider.chat>
Co-authored-by: aider (openrouter/anthropic/claude-sonnet-4) <aider@aider.chat>
Co-authored-by: aider (openrouter/anthropic/claude-sonnet-4) <aider@aider.chat>
Co-authored-by: aider (openrouter/anthropic/claude-sonnet-4) <aider@aider.chat>
Co-authored-by: aider (openrouter/anthropic/claude-sonnet-4) <aider@aider.chat>
Co-authored-by: aider (openrouter/anthropic/claude-sonnet-4) <aider@aider.chat>
Co-authored-by: aider (openrouter/anthropic/claude-sonnet-4) <aider@aider.chat>
Co-authored-by: aider (openrouter/anthropic/claude-sonnet-4) <aider@aider.chat>
Please enter the commit message for your changes. Lines starting
upload_all_datasets.2.py
Co-authored-by: aider (openrouter/openai/o3-mini-high) <aider@aider.chat>
Co-authored-by: aider (openrouter/openai/o3-mini-high) <aider@aider.chat>
Co-authored-by: aider (openrouter/openai/o3-mini-high) <aider@aider.chat>
Co-authored-by: aider (openrouter/openai/o3-mini-high) <aider@aider.chat>
Co-authored-by: aider (openrouter/anthropic/claude-sonnet-4) <aider@aider.chat>
Co-authored-by: aider (openrouter/openai/o3-mini-high) <aider@aider.chat>
Co-authored-by: aider (openrouter/openai/o3-mini-high) <aider@aider.chat>
Reviewed-on: #41
Reviewed-by: Brent Edwards <brent.edwards@cleverthis.com>
Reviewed-on: #42
Reviewed-by: Brent Edwards <brent.edwards@cleverthis.com>
Author
Member

I have updated this to make pyright and ruff check pass everything.

The only exception:

❯ pyright scripts/*.py
/home/brent.edwards/Workspace-2/dataset-uploader/scripts/integration_test_orchestrator.py
  /home/brent.edwards/Workspace-2/dataset-uploader/scripts/integration_test_orchestrator.py:30:8 - warning: Import "psutil" could not be resolved from source (reportMissingModuleSource)
  /home/brent.edwards/Workspace-2/dataset-uploader/scripts/integration_test_orchestrator.py:33:6 - error: Import "test_phases.compatibility_coordinator" could not be resolved (reportMissingImports)
  /home/brent.edwards/Workspace-2/dataset-uploader/scripts/integration_test_orchestrator.py:34:6 - error: Import "test_phases.deployment_coordinator" could not be resolved (reportMissingImports)
  /home/brent.edwards/Workspace-2/dataset-uploader/scripts/integration_test_orchestrator.py:35:6 - error: Import "test_phases.huggingface_coordinator" could not be resolved (reportMissingImports)
  /home/brent.edwards/Workspace-2/dataset-uploader/scripts/integration_test_orchestrator.py:36:6 - error: Import "test_phases.model_capability_coordinator" could not be resolved (reportMissingImports)
  /home/brent.edwards/Workspace-2/dataset-uploader/scripts/integration_test_orchestrator.py:37:6 - error: Import "test_phases.performance_coordinator" could not be resolved (reportMissingImports)
  /home/brent.edwards/Workspace-2/dataset-uploader/scripts/integration_test_orchestrator.py:40:6 - error: Import "test_phases.training_coordinator" could not be resolved (reportMissingImports)
  /home/brent.edwards/Workspace-2/dataset-uploader/scripts/integration_test_orchestrator.py:41:6 - error: Import "utils.monitoring" could not be resolved (reportMissingImports)
  /home/brent.edwards/Workspace-2/dataset-uploader/scripts/integration_test_orchestrator.py:42:6 - error: Import "utils.reporting" could not be resolved (reportMissingImports)
  /home/brent.edwards/Workspace-2/dataset-uploader/scripts/integration_test_orchestrator.py:43:6 - error: Import "utils.resource_manager" could not be resolved (reportMissingImports)
  /home/brent.edwards/Workspace-2/dataset-uploader/scripts/integration_test_orchestrator.py:46:6 - error: Import "utils.test_environment" could not be resolved (reportMissingImports)
  /home/brent.edwards/Workspace-2/dataset-uploader/scripts/integration_test_orchestrator.py:244:16 - error: Import "torch" could not be resolved (reportMissingImports)
  /home/brent.edwards/Workspace-2/dataset-uploader/scripts/integration_test_orchestrator.py:259:16 - error: Import "torch" could not be resolved (reportMissingImports)
  /home/brent.edwards/Workspace-2/dataset-uploader/scripts/integration_test_orchestrator.py:680:20 - error: Import "torch" could not be resolved (reportMissingImports)
13 errors, 1 warning, 0 informations

@aditya --

Should these be added to the pyproject.toml file, or is the integration_test_orchestrator.py part of the main code base still? (Its name says that it should be part of testing.)

I have updated this to make `pyright` and `ruff check` pass everything. The only exception: ``` ❯ pyright scripts/*.py /home/brent.edwards/Workspace-2/dataset-uploader/scripts/integration_test_orchestrator.py /home/brent.edwards/Workspace-2/dataset-uploader/scripts/integration_test_orchestrator.py:30:8 - warning: Import "psutil" could not be resolved from source (reportMissingModuleSource) /home/brent.edwards/Workspace-2/dataset-uploader/scripts/integration_test_orchestrator.py:33:6 - error: Import "test_phases.compatibility_coordinator" could not be resolved (reportMissingImports) /home/brent.edwards/Workspace-2/dataset-uploader/scripts/integration_test_orchestrator.py:34:6 - error: Import "test_phases.deployment_coordinator" could not be resolved (reportMissingImports) /home/brent.edwards/Workspace-2/dataset-uploader/scripts/integration_test_orchestrator.py:35:6 - error: Import "test_phases.huggingface_coordinator" could not be resolved (reportMissingImports) /home/brent.edwards/Workspace-2/dataset-uploader/scripts/integration_test_orchestrator.py:36:6 - error: Import "test_phases.model_capability_coordinator" could not be resolved (reportMissingImports) /home/brent.edwards/Workspace-2/dataset-uploader/scripts/integration_test_orchestrator.py:37:6 - error: Import "test_phases.performance_coordinator" could not be resolved (reportMissingImports) /home/brent.edwards/Workspace-2/dataset-uploader/scripts/integration_test_orchestrator.py:40:6 - error: Import "test_phases.training_coordinator" could not be resolved (reportMissingImports) /home/brent.edwards/Workspace-2/dataset-uploader/scripts/integration_test_orchestrator.py:41:6 - error: Import "utils.monitoring" could not be resolved (reportMissingImports) /home/brent.edwards/Workspace-2/dataset-uploader/scripts/integration_test_orchestrator.py:42:6 - error: Import "utils.reporting" could not be resolved (reportMissingImports) /home/brent.edwards/Workspace-2/dataset-uploader/scripts/integration_test_orchestrator.py:43:6 - error: Import "utils.resource_manager" could not be resolved (reportMissingImports) /home/brent.edwards/Workspace-2/dataset-uploader/scripts/integration_test_orchestrator.py:46:6 - error: Import "utils.test_environment" could not be resolved (reportMissingImports) /home/brent.edwards/Workspace-2/dataset-uploader/scripts/integration_test_orchestrator.py:244:16 - error: Import "torch" could not be resolved (reportMissingImports) /home/brent.edwards/Workspace-2/dataset-uploader/scripts/integration_test_orchestrator.py:259:16 - error: Import "torch" could not be resolved (reportMissingImports) /home/brent.edwards/Workspace-2/dataset-uploader/scripts/integration_test_orchestrator.py:680:20 - error: Import "torch" could not be resolved (reportMissingImports) 13 errors, 1 warning, 0 informations ``` @aditya -- Should these be added to the `pyproject.toml` file, or is the `integration_test_orchestrator.py` part of the main code base still? (Its name says that it should be part of testing.)
This pull request can be merged automatically.
You are not authorized to merge this pull request.
View command line instructions

Checkout

From your project repository, check out a new branch and test the changes.
git fetch -u origin stream-download-convert-upload-merge-15-refactor-rdf-converters:stream-download-convert-upload-merge-15-refactor-rdf-converters
git switch stream-download-convert-upload-merge-15-refactor-rdf-converters

Merge

Merge the changes and update on Forgejo.

Warning: The "Autodetect manual merge" setting is not enabled for this repository, you will have to mark this pull request as manually merged afterwards.

git switch master
git merge --no-ff stream-download-convert-upload-merge-15-refactor-rdf-converters
git switch stream-download-convert-upload-merge-15-refactor-rdf-converters
git rebase master
git switch master
git merge --ff-only stream-download-convert-upload-merge-15-refactor-rdf-converters
git switch stream-download-convert-upload-merge-15-refactor-rdf-converters
git rebase master
git switch master
git merge --no-ff stream-download-convert-upload-merge-15-refactor-rdf-converters
git switch master
git merge --squash stream-download-convert-upload-merge-15-refactor-rdf-converters
git switch master
git merge --ff-only stream-download-convert-upload-merge-15-refactor-rdf-converters
git switch master
git merge stream-download-convert-upload-merge-15-refactor-rdf-converters
git push origin master
Sign in to join this conversation.
No reviewers
No milestone
No project
No assignees
2 participants
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
cleverdatasets/dataset-uploader!45
No description provided.