Skip to content

Commit

Permalink
Merge branch 'master' of github.com:rpy2/rpy2
Browse files Browse the repository at this point in the history
  • Loading branch information
lgautier committed Feb 24, 2023
2 parents e68e583 + 2a820b6 commit 54ad3b4
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
3 changes: 3 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ Bugs fixed
mismatch error with some build/install toolchain (issue #984). The import is now
lazy/delayed.

- Installation targets `pandas`, `all`, and `test` now specify `pandas>=1.2.0`
(which should limit frequencies of issues like #998).

Changes
-------

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ For example, to be able to run the unit tests:
pip install rpy2[test]
```

To install all dependencies, use:
To install all optional dependencies (numpy, pandas, ipython), use:

```bash
pip install rpy2[all]
Expand Down
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,11 @@ dependencies = [
dynamic = ["version"]

[project.optional-dependencies]
test = ["pytest", "ipython", "numpy", "pandas"]
numpy = ["pandas"]
pandas = ["numpy", "pandas"]
test = ["pytest", "ipython", "numpy", "pandas>=1.2.0"]
numpy = []
pandas = ["numpy", "pandas>=1.2.0"]
types = ["mypy", "types-pytz", "types-tzlocal"]
all = ["pytest", "ipython", "pandas", "numpy"]
all = ["pytest", "ipython", "pandas>=1.2.0", "numpy"]

[project.urls]
Homepage = "https://rpy2.github.io"
Expand Down

0 comments on commit 54ad3b4

Please sign in to comment.