-
Notifications
You must be signed in to change notification settings - Fork 1
Rename package to epidatpy
#15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
My familiarity with Python is limited and stale, so please bear with me. I'm testing out the first README.md commands, encountered trouble. For the first one: python -m venv ../venv-epidatpy
../venv-epidatpy/bin/pip install --upgrade pip
#> [output elided]
../venv-epidatpy/bin/python --version
#> Python 3.10.5
../venv-epidatpy/bin/pip --version
#> pip 22.2.2 from /home/fullname/files/tooling/venv-epidatpy/lib64/python3.10/site-packages/pip (python 3.10)
../venv-epidatpy/bin/pip install -e "git+https://github.com/cmu-delphi/epidatpy.git"
#> ERROR: Could not detect requirement name for 'git+https://github.com/cmu-delphi/epidatpy.git', please specify one with #egg=your_package_name and the second one (for the pre-rename version) also has the same type of message. |
Is this an issue with my configuration, or does it mean that the install string needs an egg setting suffix? |
|
* install command updated with #egg param * fixed package references in index.rst
So the current docs (README + index.rst) are written as if this package was already on PyPI and all the documentation sites existed. I figure we will make those before release, so the documentation is accurate. Otherwise, I addressed your comments: README is updated, index.rst is updated, and I added an |
Some notes:
I think this looks fine to merge, but leave hitting the button to you, in case one of the above looks like it actually requires changes. |
Good catch on the broken link! I'll fix and the first line should work. As for your third point, this is just one of those strange Python things, where the PyPI distribution name is |
First install command does indeed appear to work after the merge! Thanks; I couldn't quickly find anything explaining which of the several names the |
Closes #13.
Replaced all instances of
delphi_epidata
withepidatpy
inCan import package and use it. CI should pass.