Commit Graph

15827 Commits

Author SHA1 Message Date
Marcus Blättermann
6a1841a056
Disabled typescript during build 2022-12-20 17:46:33 +01:00
Marcus Blättermann
a5d573095f
Disabled ESLint during builds 2022-12-20 17:46:33 +01:00
Marcus Blättermann
978045b36b
Redirect index.mdx to parent directory 2022-12-20 17:46:33 +01:00
Marcus Blättermann
dcf8455f77
Extract logic 2022-12-20 17:46:33 +01:00
Marcus Blättermann
6fa2bf2fff
Allow to parse subfolders for pages 2022-12-20 17:46:33 +01:00
Marcus Blättermann
7c31de6c34
Refactoring 2022-12-20 17:46:33 +01:00
Marcus Blättermann
d625737451
Allow to handle directories for page creation 2022-12-20 17:46:33 +01:00
Marcus Blättermann
4151870c9f
Extract function
This will make the next commit easier to read
2022-12-20 17:46:33 +01:00
Marcus Blättermann
aea5496788
Add ability to load plugins 2022-12-20 17:46:32 +01:00
Marcus Blättermann
790e03f900
Add import for custom components 2022-12-20 17:46:32 +01:00
Marcus Blättermann
b861b1f6ce
Convert to module
This allows to use `import/export` syntax
2022-12-20 17:46:32 +01:00
Marcus Blättermann
863d0f0d44
Remove default pages and styling 2022-12-20 17:46:32 +01:00
Marcus Blättermann
52f07e5316
Add SASS support 2022-12-20 17:46:32 +01:00
Marcus Blättermann
a9a569bfc7
Add /public 2022-12-20 17:46:32 +01:00
Marcus Blättermann
a4ee13175d
Add experimental Rust MDX parser 2022-12-20 17:46:32 +01:00
Marcus Blättermann
08f9d90aa3
Add basic implementation for MDXRemote 2022-12-20 17:46:31 +01:00
Marcus Blättermann
32ac63ce4a
Make sure to use correct Node version 2022-12-20 17:46:31 +01:00
Marcus Blättermann
3690192dbd
Apply Prettier to all files 2022-12-20 17:46:31 +01:00
Marcus Blättermann
b473ff528a
Add prettier 2022-12-20 17:46:31 +01:00
Marcus Blättermann
abcb44e918
Disabled TypeScript strict mode for now 2022-12-20 17:46:31 +01:00
Marcus Blättermann
e48ae96847
Add VSCode extension recommendation 2022-12-20 17:46:31 +01:00
Marcus Blättermann
1ce4aacaab
Allow Next to handle .md and .mdx files. 2022-12-20 17:46:31 +01:00
Marcus Blättermann
a1da151f3e
Add MDX to Next 2022-12-20 17:46:30 +01:00
Marcus Blättermann
f00c4f7e19
Install MDX packages
Following: 77b5f79a4d/packages/next-mdx/readme.md
2022-12-20 17:46:30 +01:00
Marcus Blättermann
0bd9be16fa
Run npx create-next-app@13 next-blog 2022-12-20 17:46:30 +01:00
Marcus Blättermann
203f864c91
Initial commit 2022-12-20 17:46:26 +01:00
Marcus Blättermann
fba63f5f09
Minor website fixes (#11974) [ci skip] 2022-12-20 17:41:38 +01:00
Marcus Blättermann
de2e3747cc
Apply Prettier (#11996) 2022-12-19 16:18:19 +01:00
Sofie Van Landeghem
e93952f284
Merge pull request #11973 from essenmitsosse/update-migration-from-master
Update `migration/website` from `master`
2022-12-16 10:59:30 +01:00
Marcus Blättermann
0d04341d32
Merge branch 'master' into update-migration-from-master 2022-12-15 00:11:32 +01:00
Adriane Boyd
e5c7f3b077
CI: Install thinc-apple-ops through extra (#11963) 2022-12-12 10:13:10 +01:00
Adriane Boyd
0591e67265
Cast to uint64 for all array-based doc representations (#11933)
* Convert all individual values explicitly to uint64 for array-based doc representations

* Temporarily test with latest numpy v1.24.0rc

* Remove unnecessary conversion from attr_t

* Reduce number of individual casts

* Convert specifically from int32 to uint64

* Revert "Temporarily test with latest numpy v1.24.0rc"

This reverts commit eb0e3c5006.

* Also use int32 in tests
2022-12-12 08:45:35 +01:00
Adriane Boyd
8c291ace0c
Extend to wasabi v1.1 (#11945)
* Extend to wasabi v1.1

* Temporarily run mypy and tests with newest wasabi

* Temporarily skip check requirements test

* Revert "Temporarily skip check requirements test"

This reverts commit 44f4ce20a8.

* Revert "Temporarily run mypy and tests with newest wasabi"

This reverts commit e677a2257c.
2022-12-12 08:38:36 +01:00
github-actions[bot]
f22fc7a113
Auto-format code with black (#11955)
Co-authored-by: explosion-bot <explosion-bot@users.noreply.github.com>
2022-12-09 10:15:52 +01:00
vincent d warmerdam
6d2ca1ab3a
Update custom solutions links (#11903)
* Update custom solutions

Will now point to https://explosion.ai/custom-solutions

* added-sidebar

* added-analysis-to-readme

* update-landing-page
2022-12-07 16:02:09 +01:00
Paul O'Leary McCann
73919336fb
Remove spacy-sentence-segmenter from Universe (#11932) 2022-12-07 15:56:03 +01:00
Paul O'Leary McCann
5c3a60e8f4
Add in errors used in the beam code that were removed at some point (#11935)
I don't think there's any way to use the beam code at the moment, but as
long as it's around the errors it refers to should also be present.
2022-12-07 15:52:35 +01:00
Paul O'Leary McCann
916191848a
Update scattertext example code (#11937)
* Update scattertext example code

* Remove PMI Filter Threshold
2022-12-07 18:09:04 +09:00
Daniël de Kok
27fac7df2e
EditTreeLemmatizer: correctly add strings when initializing from labels (#11934)
Strings in replacement nodes where not added to the `StringStore`
when `EditTreeLemmatizer` was initialized from a set of labels. The
corresponding test did not capture this because it added the strings
through the examples that were passed to the initialization.

This change fixes both this bug in the initialization as the 'shadowing'
of the bug in the test.
2022-12-07 13:53:41 +09:00
Zhangrp
23085ffef4
Fix interpolation in directory names, see #11235. (#11914) 2022-12-06 17:42:12 +09:00
Ryn Daniels
1aadcfcb37
update lock-threads to v4 (#11930) 2022-12-05 10:17:10 +01:00
Adriane Boyd
8afa8b5a7b
Refactor kwargs in CLI msg for future wasabi compatibility (#11918)
Necessary for mypy with wasabi v1+.
2022-12-05 10:00:00 +01:00
Darigov Research
6f342bdd72
docs: Adds link to license in readme (#11924)
Would resolve https://github.com/explosion/spaCy/issues/11923 if merged
2022-12-05 09:49:04 +01:00
Paul O'Leary McCann
5848656b5e
Switch ubuntu-latest to ubuntu-20.04 in main tests (#11928)
* Switch ubuntu-latest to ubuntu-20.04 in main tests

* Only use 20.04 for 3.6
2022-12-05 09:43:23 +01:00
Sofie Van Landeghem
4b2097a271
fix links (#11927) 2022-12-05 16:29:13 +09:00
Marcus Blättermann
f50f1a4b6d
Lock current node version (#11885) 2022-12-02 15:59:15 +01:00
Sofie Van Landeghem
3eed6801d7
Merge pull request #11886 from essenmitsosse/rename-mdx-files
Rename all MDX file to `.mdx`
2022-12-02 15:31:21 +01:00
github-actions[bot]
df0cb4b77b
Auto-format code with black (#11913)
Co-authored-by: explosion-bot <explosion-bot@users.noreply.github.com>
2022-12-02 14:49:12 +01:00
Paul O'Leary McCann
f9d17a644b
Config generation fails for GPU without transformers (#11899)
If you don't have spacy-transformers installed, but try to use `init
config` with the GPU flag, you'll get an error. The issue is that the
`use_transformers` flag in the config is conflated with the GPU flag,
and then there's an attempt to access transformers config info that may
not exist.

There may be a better way to do this, but this stops the error.
2022-12-02 10:17:11 +01:00
Adriane Boyd
445c670a2d
Fix spancat for zero suggestions (#11860)
* Add test for spancat predict with zero suggestions

* Fix spancat for zero suggestions

* Undo changes to extract_spans

* Use .sum() as in update
2022-12-02 09:33:52 +01:00