Skip to content

Commit 24a5b25

Browse files
authored
fix dependency installation (#1066)
* make env work * add deps * delete dev env
1 parent ce174ec commit 24a5b25

File tree

1 file changed

+23
-1
lines changed

1 file changed

+23
-1
lines changed

pyproject.toml

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "pyfixest"
3-
version = "0.40.0"
3+
version = "0.40.1"
44
description = "Fast high dimensional fixed effect estimation following syntax of the fixest R package."
55
authors = [
66
{ name = "Alexander Fischer", email = "[email protected]" },
@@ -9,6 +9,28 @@ authors = [
99
readme = "README.md"
1010
requires-python = ">=3.9"
1111
license = { text = "MIT" }
12+
dependencies = [
13+
"scipy>=1.6,<1.16",
14+
"formulaic>=1.1.0",
15+
"pandas>=1.1.0",
16+
"numba>=0.58.0",
17+
"seaborn>=0.13.2",
18+
"tabulate>=0.9.0",
19+
"tqdm>=4.0.0",
20+
"great_tables>=0.10.0",
21+
"numpy>=1.25.2",
22+
"narwhals>=1.13.3",
23+
"joblib>=1.4.2,<2",
24+
]
25+
26+
[project.optional-dependencies]
27+
jax = [
28+
"jax>=0.4.15",
29+
"jaxlib>=0.4.15",
30+
]
31+
plots = [
32+
"lets-plot>=4.0.0",
33+
]
1234

1335
[build-system]
1436
requires = ["maturin>=1.8,<2.0"]

0 commit comments

Comments
 (0)