Skip to content

Commit 2236f51

Browse files
authored
Merge pull request #1 from jseabold/rename-project
Rename project
2 parents 99cf190 + dbfa742 commit 2236f51

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

.github/workflows/python-package.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,4 +40,4 @@ jobs:
4040
- name: Test with pytest
4141
run: |
4242
python setup.py install
43-
pytest -W error --cov=pandas_select --cov-report term-missing:skip-covered
43+
pytest -W error --cov=pandas_selectable --cov-report term-missing:skip-covered

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
# pandas-select
1+
# pandas-selectable
22

3-
![test status](https://github.com/jseabold/pandas-select/workflows/tests/badge.svg)
3+
![test status](https://github.com/jseabold/pandas-selectable/workflows/tests/badge.svg)
44

55
## What Is It?
66

7-
`pandas-select` adds a `select` accessor to pandas DataFrames and Series. It's like `query` but with the niceties of tab-completion.
7+
`pandas-selectable` adds a `select` accessor to pandas DataFrames and Series. It's like `query` but with the niceties of tab-completion.
88

99
## Quickstart
1010

@@ -13,7 +13,7 @@ In [1]: import numpy as np
1313

1414
In [2]: import pandas as pd
1515

16-
In [3]: import pandas_select # magic
16+
In [3]: import pandas_selectable # magic
1717

1818
In [4]: dta = pd.DataFrame.from_dict({
1919
...: 'A': ['A', 'B', 'C'] * 5,
@@ -104,5 +104,5 @@ Name: A, dtype: object
104104
## Installation
105105

106106
```bash
107-
pip install pandas-select
107+
pip install pandas-selectable
108108
```
File renamed without changes.
File renamed without changes.

pandas_select/tests/test_select.py pandas_selectable/tests/test_select.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import pandas_select # noqa
1+
import pandas_selectable # noqa
22

33

44
def test_accessor_registered(dta):

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
from setuptools import setup
22

33
setup(
4-
name='pandas_select',
4+
name='pandas_selectable',
55
version='1.0',
66
description='Add a select accessor to pandas',
7-
packages=['pandas_select'],
7+
packages=['pandas_selectable'],
88
)

0 commit comments

Comments
 (0)