You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When installing the upload agent, its dependencies should automatically be installed. The person installing should not have to install the dependencies with a second command
The install_requires configuration option in setup.cfg is supposed to automatically install the listed dependencies. It must not be set up correctly, because installing the package and then trying to run it complains about missing dependencies
Adjust the settings so that the dependencies automatically install.
To test this behavior, in a new venv, run pip install datateer-upload-agent and then try to run datateer --help. You will get an error about a missing dependency.
You should also be able to install locally and get the same results with pip install <path-to-upload-agent-repo> and datateer --help (that way you don't have to mess with pypi just to test this issue)
Acceptance Criteria
Create a venv separate from the one you use to develop the project
Run pip install <path>
Run datateer --help
Verify that the help message is shown, and that no error occurs
The text was updated successfully, but these errors were encountered:
This was completed by Adam and I on 2/12. Adam I can't recall if we had any changes after the code for release 3, can you let me know if you think we have anything left to do here please?
Requirements
When installing the upload agent, its dependencies should automatically be installed. The person installing should not have to install the dependencies with a second command
The
install_requires
configuration option in setup.cfg is supposed to automatically install the listed dependencies. It must not be set up correctly, because installing the package and then trying to run it complains about missing dependenciesAdjust the settings so that the dependencies automatically install.
To test this behavior, in a new venv, run
pip install datateer-upload-agent
and then try to rundatateer --help
. You will get an error about a missing dependency.You should also be able to install locally and get the same results with
pip install <path-to-upload-agent-repo>
anddatateer --help
(that way you don't have to mess with pypi just to test this issue)Acceptance Criteria
pip install <path>
datateer --help
The text was updated successfully, but these errors were encountered: