Skip to content

Commit cdfd979

Browse files
authored
chore: remove references to conda (#830)
1 parent f3b0f54 commit cdfd979

File tree

3 files changed

+2
-25
lines changed

3 files changed

+2
-25
lines changed

noxfile.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -552,8 +552,6 @@ def prerelease(session: nox.sessions.Session, tests_path):
552552
already_installed.add("pyarrow")
553553

554554
session.install(
555-
"--extra-index-url",
556-
"https://pypi.anaconda.org/scipy-wheels-nightly/simple",
557555
"--prefer-binary",
558556
"--pre",
559557
"--upgrade",

third_party/bigframes_vendored/ibis/README.md

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
# Ibis
22

33
[![Documentation Status](https://img.shields.io/badge/docs-docs.ibis--project.org-blue.svg)](http://ibis-project.org)
4-
[![Anaconda-Server Badge](https://anaconda.org/conda-forge/ibis-framework/badges/version.svg)](https://anaconda.org/conda-forge/ibis-framework)
54
[![PyPI](https://img.shields.io/pypi/v/ibis-framework.svg)](https://pypi.org/project/ibis-framework)
65
[![Build status](https://github.com/ibis-project/ibis/actions/workflows/ibis-main.yml/badge.svg)](https://github.com/ibis-project/ibis/actions/workflows/ibis-main.yml?query=branch%3Amaster)
76
[![Build status](https://github.com/ibis-project/ibis/actions/workflows/ibis-backends.yml/badge.svg)](https://github.com/ibis-project/ibis/actions/workflows/ibis-backends.yml?query=branch%3Amaster)
@@ -83,28 +82,14 @@ Install Ibis from PyPI with:
8382
pip install 'ibis-framework[duckdb]'
8483
```
8584

86-
Or from conda-forge with:
87-
88-
```bash
89-
conda install ibis-framework -c conda-forge
90-
```
91-
9285
(It’s a common mistake to `pip install ibis`. If you try to use Ibis and get errors early on try uninstalling `ibis` and installing `ibis-framework`)
9386

94-
To discover ibis, we suggest starting with the DuckDB backend (which is included by default in the conda-forge package). The DuckDB backend is performant and fully featured.
95-
9687
To use ibis with other backends, include the backend name in brackets for PyPI:
9788

9889
```bash
9990
pip install 'ibis-framework[postgres]'
10091
```
10192

102-
Or use `ibis-$BACKEND` where `$BACKEND` is the specific backend you want to use when installing from conda-forge:
103-
104-
```bash
105-
conda install ibis-postgres -c conda-forge
106-
```
107-
10893
## Getting Started with Ibis
10994

11095
We provide a number of tutorial and example notebooks in the

third_party/bigframes_vendored/pandas/README.md

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66

77
# pandas: powerful Python data analysis toolkit
88
[![PyPI Latest Release](https://img.shields.io/pypi/v/pandas.svg)](https://pypi.org/project/pandas/)
9-
[![Conda Latest Release](https://anaconda.org/conda-forge/pandas/badges/version.svg)](https://anaconda.org/anaconda/pandas/)
109
[![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.3509134.svg)](https://doi.org/10.5281/zenodo.3509134)
1110
[![Package Status](https://img.shields.io/pypi/status/pandas.svg)](https://pypi.org/project/pandas/)
1211
[![License](https://img.shields.io/pypi/l/pandas.svg)](https://github.com/pandas-dev/pandas/blob/main/LICENSE)
@@ -86,15 +85,10 @@ The source code is currently hosted on GitHub at:
8685
https://github.com/pandas-dev/pandas
8786

8887
Binary installers for the latest released version are available at the [Python
89-
Package Index (PyPI)](https://pypi.org/project/pandas) and on [Conda](https://docs.conda.io/en/latest/).
88+
Package Index (PyPI)](https://pypi.org/project/pandas).
9089

9190
```sh
92-
# conda
93-
conda install -c conda-forge pandas
94-
```
95-
96-
```sh
97-
# or PyPI
91+
# PyPI
9892
pip install pandas
9993
```
10094

0 commit comments

Comments
 (0)