Skip to content

Commit 0d6d2fc

Browse files
committed
Merge remote-tracking branch 'upstream/main' into more-dedup-1
2 parents 6d19ba0 + 8609786 commit 0d6d2fc

File tree

5 files changed

+8
-18
lines changed

5 files changed

+8
-18
lines changed

.github/workflows/mkdocs.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,7 @@ jobs:
2626
path: .cache
2727
restore-keys: |
2828
mkdocs-material-
29-
- name: griffe
30-
# hopefully temporary until https://github.com/mkdocstrings/mkdocstrings/issues/716
31-
run: pip install git+https://github.com/MarcoGorelli/griffe.git@no-overloads
32-
- run: pip install -e .[docs,dask,duckdb]
33-
34-
- run: mkdocs gh-deploy --force
29+
- name: Install dependencies
30+
run: pip install -e .[docs,dask,duckdb]
31+
- name: Deploy docs
32+
run: mkdocs gh-deploy --force

CONTRIBUTING.md

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -111,15 +111,6 @@ If you want to run PySpark-related tests, you'll need to have Java installed. Re
111111
If you also want to test other libraries like Dask , PySpark, and Modin, you can install them too with
112112
`uv pip install -e ".[dev, core, docs, dask, pyspark, modin]"`.
113113
114-
3. Install a fork of griffe:
115-
116-
```terminal
117-
uv pip install git+https://github.com/MarcoGorelli/griffe.git@no-overloads
118-
```
119-
120-
This is hopefully temporary until [mkdocstrings#716](https://github.com/mkdocstrings/mkdocstrings/issues/716)
121-
is addressed.
122-
123114
You should also install pre-commit:
124115
125116
```terminal

docs/installation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ To verify the installation, start the Python REPL and execute:
3030
```python
3131
>>> import narwhals
3232
>>> narwhals.__version__
33-
'1.27.1'
33+
'1.28.0'
3434
```
3535

3636
If you see the version number, then the installation was successful!

narwhals/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@
7979
from narwhals.utils import maybe_reset_index
8080
from narwhals.utils import maybe_set_index
8181

82-
__version__ = "1.27.1"
82+
__version__ = "1.28.0"
8383

8484
__all__ = [
8585
"Array",

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ build-backend = "hatchling.build"
55

66
[project]
77
name = "narwhals"
8-
version = "1.27.1"
8+
version = "1.28.0"
99
dependencies = []
1010
requires-python = ">=3.8"
1111
authors = [
@@ -76,6 +76,7 @@ docs = [
7676
"mkdocs-autorefs",
7777
"mkdocs-material",
7878
"mkdocstrings[python]",
79+
"mkdocstrings-python>=1.16",
7980
"pandas",
8081
"polars>=1.0.0",
8182
"pyarrow",

0 commit comments

Comments
 (0)