Elías Snorrason
Elías Snorrason
Could this be resolved by referring to the language data directory with the three-letter country code? ``` spacy/lang/is -> spacy/lang/isl ```
Another workaround for this case is to use `importlib`: ```python import importlib lang_is = importlib.import_module("spacy.lang.is") lang_is.stop_words.STOP_WORDS
Maybe start the switch but allow specific warnings/errors? E.g. the following only results in 25 errors overall: ```bash mypy --install-types --non-interactive \ --strict --allow-untyped-defs --allow-untyped-calls --allow-any-generics \ --show-error-codes \ --exclude...
I'll see what I can do 👍
Something along these lines? (Based on [this starter workflow](https://github.com/actions/starter-workflows/blob/main/ci/python-publish.yml)) ```yml name: Upload Python Package on: release: types: [published] schedule: cron: '0 3 * * *' # Whenever the nightly build...
Hi @ethanotran, Maybe there's a misunderstanding here, but I assume you want to remove ***type annotations*** from the docstrings of functions with typing in their signatures, not the entire docstrings...
Another thing: Updating the test functions in the `tests/` directory is not as important, as they don't show up on [docs.cleanlab.ai](https://docs.cleanlab.ai/). Might I suggest that you start with something like...
> I can't seem to find the generated html file for the various test*.py files in the test directory This is intended, as we're not trying to build the docs...
The drop in coverage is not really relevant to this PR.
In the following [system of differential equations](https://latex.codecogs.com/gif.latex?\dpi{150}&space;\bg_white&space;\large&space;\dot{u}&space;=&space;Au&space;\quad&space;\Rightarrow&space;\quad&space;U(s)&space;=&space;\left[&space;sI&space;-&space;A&space;\right]^{-1}&space;u_0&space;\quad&space;\Rightarrow&space;\quad&space;u(t)&space;=&space;e^{At}u_0), U(s) is determined with `gesv!`. For this minimal example, we assume that the operator A is time-independent. ```julia using InverseLaplace using LinearAlgebra.LAPACK: gesv!...