-
Notifications
You must be signed in to change notification settings - Fork 4
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
Cannot install capitains-nautilus==2.0.0 in pip #95
Comments
See also cdli-gh/cdli-cts-server#13 |
It seems there is actually a publish pipeline set up with Github actions triggered with each commit on
|
I reached a working setup, albeit using a bit of a hack: installing this repo as a submodule and install it as a local python module. I documented my steps in the README of https://github.com/marktani/pdl-cts-server, here's a quick summary: # in project root
git submodule add [email protected]:Capitains/Nautilus.git
cd Nautilus
git reset --hard 86c9983087b39b801892ebe4f03e11bdb27800e3
cd ..
# create virtual environment
python3 -m venv venv
source venv/bin/activate # in fish: source venv/bin/activate.fish
# install `capitains-nautilus`
python -m pip install -e Nautilus/ |
The 2.0.0 has not been released because we are waiting for the DTS API specs to be finalized, which unfortunately is taking way more time than expected. If you require this library, we can work out something (such as 2.0.0 will be the stable version for you, and then 3.0.0 will be the DTS one). I'll happily share the work on this library :) |
I just made some cleaning on the dev branch for the test to pass. |
Thanks! I didn't know about DTS. I was able to get my CTS server up and running, and I am happy with my workaround for now. |
It seems like version
2.0.0
hasn't been released topip
yet, only these versions are available:When I use version
1.0.3
in my own project, I get the error messageModuleNotFoundError: No module named 'werkzeug.contrib'
. I'd like to usecapitains-nautilus
exactly as in this repo in commit 86c9983.The text was updated successfully, but these errors were encountered: