Skip to content

Commit

Permalink
unspecify jl version
Browse files Browse the repository at this point in the history
  • Loading branch information
kamil.rybacki committed Feb 11, 2024
1 parent c19790c commit 4189600
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 33 deletions.
31 changes: 12 additions & 19 deletions .astro/types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -190,49 +190,42 @@ declare module 'astro:content' {
slug: "cheatsheet";
body: string;
collection: "articles";
data: InferEntrySchema<"articles">
data: any
} & { render(): Render[".mdx"] };
"ciandcompose.mdx": {
id: "ciandcompose.mdx";
slug: "ciandcompose";
body: string;
collection: "articles";
data: InferEntrySchema<"articles">
data: any
} & { render(): Render[".mdx"] };
"comfortable_rustification.mdx": {
id: "comfortable_rustification.mdx";
slug: "comfortable_rustification";
body: string;
collection: "articles";
data: InferEntrySchema<"articles">
data: any
} & { render(): Render[".mdx"] };
"components.mdx": {
id: "components.mdx";
slug: "components";
body: string;
collection: "articles";
data: InferEntrySchema<"articles">
data: any
} & { render(): Render[".mdx"] };
"migration.mdx": {
id: "migration.mdx";
slug: "migration";
body: string;
collection: "articles";
data: InferEntrySchema<"articles">
data: any
} & { render(): Render[".mdx"] };
"particles_of_rust_one.mdx": {
id: "particles_of_rust_one.mdx";
slug: "particles_of_rust_one";
body: string;
collection: "articles";
data: InferEntrySchema<"articles">
} & { render(): Render[".mdx"] };
"particles_of_rust_two.mdx": {
id: "particles_of_rust_two.mdx";
slug: "particles_of_rust_two";
body: string;
collection: "articles";
data: InferEntrySchema<"articles">
data: any
} & { render(): Render[".mdx"] };
};
"poems": {
Expand All @@ -241,21 +234,21 @@ declare module 'astro:content' {
slug: "30";
body: string;
collection: "poems";
data: InferEntrySchema<"poems">
data: any
} & { render(): Render[".mdx"] };
"brawobardzoladnie.mdx": {
id: "brawobardzoladnie.mdx";
slug: "brawobardzoladnie";
body: string;
collection: "poems";
data: InferEntrySchema<"poems">
data: any
} & { render(): Render[".mdx"] };
"mroz.mdx": {
id: "mroz.mdx";
slug: "mroz";
body: string;
collection: "poems";
data: InferEntrySchema<"poems">
data: any
} & { render(): Render[".mdx"] };
};
"projects": {
Expand All @@ -264,14 +257,14 @@ declare module 'astro:content' {
slug: "diffcache";
body: string;
collection: "projects";
data: InferEntrySchema<"projects">
data: any
} & { render(): Render[".mdx"] };
"etmal.mdx": {
id: "etmal.mdx";
slug: "etmal";
body: string;
collection: "projects";
data: InferEntrySchema<"projects">
data: any
} & { render(): Render[".mdx"] };
};

Expand All @@ -285,5 +278,5 @@ declare module 'astro:content' {

type AnyEntryMap = ContentEntryMap & DataEntryMap;

type ContentConfig = typeof import("../src/content/config");
type ContentConfig = never;
}
28 changes: 14 additions & 14 deletions jupyterlite/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,31 +1,31 @@
# Core modules
jupyterlite-core==0.1.3
jupyterlab~=3.5.1
jupyterlite-core
jupyterlab
jupyterlab-open-url-parameter

# Kernels
jupyterlite-pyodide-kernel==0.1.3
jupyterlite-javascript-kernel==0.1.3
jupyterlite-pyodide-kernel
jupyterlite-javascript-kernel

# File viewer
jupyterlab-fasta>=3,<4
jupyterlab-fasta

# Theme
jupyterlab-night

# Widgets
ipywidgets>=8.1.1,<9
ipyevents>=2.0.1
ipympl>=0.8.2
ipycanvas>=0.9.1
ipywidgets
ipyevents
ipympl
ipycanvas
ipyleaflet

# Python: plotting libraries
plotly>=5,<6
plotly
bqplot

# Python: Data science libraries
pandas>=1.3.2,<2
numpy>=1.21.2,<2
scipy>=1.7.1,<2
sympy==1.11.1
pandas
numpy
scipy
sympy

0 comments on commit 4189600

Please sign in to comment.