package not checked out?
See original GitHub issueWe are using actions/checkout@v2
for many of the submodules in PySAL with varying success. For example, in spaghetti
using actions/checkout@v2
in unittests.yml
runs smoothly without issue. However, in tobler
using actions/checkout@v2
in unittests.yml
we are getting a ModuleNotFoundError: No module named 'tobler'
. I am wondering if I can get any insight as to why this is happening in tobler
but not spaghetti
, or if there is something we are doing obviously wrong. I tried the GitHub Community Forum’s Actions Board first, but got a “missing page” there.
Issue Analytics
- State:
- Created 3 years ago
- Comments:5
Top Results From Across the Web
Cannot checkout Packages - Sparx Systems
I tried to check out a package from EA7.5 and got error message "the selected package cannot be checked-out at this time.
Read more >Enterprise architect package checkout error - Stack Overflow
The selected package cannot be checked-out at this time. The configuration 'myconfigname', reports the file 'packagename.xml' as 'Not ...
Read more >Why Is My Package Still in Transit at USPS ... - PostScan Mail
Generally, when USPS says a package is stuck in transit, it means your package has not been scanned at any distribution depot in...
Read more >packages.config doesn't get checked out from source control
After NuGet updates the file, Reconcile Offline Work can detect the altered file and add it to a changelist, which suggests that it's...
Read more >The file is not checked out. You must first check ... - SPGuides
To work with .net managed object model code we need to add below dlls which we can add from NuGet packages. Microsoft.SharePoint.Client.dll ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
i dont follow… the purpose of the action is to check out, but checking out just means cloning the repo so that the source code is available, it doesnt actually install the package unless you explicitly ask it to (and the action can be used by lots of other repos that arent python packages, so it’s definitely not supposed to install)
i have no idea why the other packages work without that step, but i think the action itself is working as intended
@ericsciple I am wondering if it would be possible to get some clarification on the need for
run: pip install -e . --no-deps --force-reinstall
in some repos (e.g.pysal/tobler
), while others are fine without it (e.g.pysal/spaghetti
). It seems that something is happening differently in these two cases (though I am quite possibly incorrect), but I can’t pin down what exactly it is. It may not even be happening inactions/checkout
, but I haven’t been able to determine that for sure.