Skip to content

Commit 65d7da1

Browse files
authored
Removes pyquickhelper as a dependency (#33)
* Removes pyquickhelper as a dependency * add assert * assert * ut * badge * fix -
1 parent 2d32be2 commit 65d7da1

18 files changed

+419
-224
lines changed

.github/workflows/check-urls.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,5 +43,5 @@ jobs:
4343
timeout: 2
4444
retry_count# : 2
4545
# exclude_urls: https://hal.archives-ouvertes.fr/hal-00990252/document
46-
# exclude_patterns: https://www.data.gouv.fr/fr/datasets/r/e3d83ab3-dc52-4c99-abaf-8a38050cc68c,https://dev.azure.com/
46+
exclude_patterns: https://circleci.com/gh/sdpython/pandas_streaming/
4747
# force_pass : true

.local.jenkins.lin.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ virtualenv:
99

1010
install:
1111
- $PYINT -m pip install --upgrade pip
12-
- $PYINT -m pip install --upgrade --no-cache-dir --no-deps --index http://localhost:8067/simple/ jyquickhelper pyquickhelper pandas_streaming --extra-index-url=https://pypi.python.org/simple/
12+
- $PYINT -m pip install --upgrade --no-cache-dir --no-deps --index http://localhost:8067/simple/ jyquickhelper pandas_streaming --extra-index-url=https://pypi.python.org/simple/
1313
- $PYINT -m pip install -r requirements.txt
1414
- $PYINT -m pip install -r requirements-dev.txt
1515
- $PYINT --version

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ pandas-streaming: streaming API over pandas
1212
:target: https://ci.appveyor.com/project/sdpython/pandas-streaming
1313
:alt: Build Status Windows
1414

15-
.. image:: https://circleci.com/gh/sdpython/pandas_streaming/tree/main.svg?style=svg
16-
:target: https://circleci.com/gh/sdpython/pandas_streaming/tree/main
15+
.. image:: https://dl.circleci.com/status-badge/img/gh/sdpython/pandas-streaming/tree/main.svg?style=svg
16+
:target: https://dl.circleci.com/status-badge/redirect/gh/sdpython/pandas-streaming/tree/main
1717

1818
.. image:: https://dev.azure.com/xavierdupre3/pandas_streaming/_apis/build/status/sdpython.pandas_streaming
1919
:target: https://dev.azure.com/xavierdupre3/pandas_streaming/

_doc/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161

6262
# The following is used by sphinx.ext.linkcode to provide links to github
6363
linkcode_resolve = make_linkcode_resolve(
64-
"pandas_streaming",
64+
"pandas-streaming",
6565
(
6666
"https://github.com/sdpython/pandas-streaming/"
6767
"blob/{revision}/{package}/"

_doc/index.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ pandas-streaming: streaming API over pandas
1616
:target: https://ci.appveyor.com/project/sdpython/pandas-streaming
1717
:alt: Build Status Windows
1818

19-
.. image:: https://circleci.com/gh/sdpython/pandas_streaming/tree/main.svg?style=svg
20-
:target: https://circleci.com/gh/sdpython/pandas_streaming/tree/main
19+
.. image:: https://dl.circleci.com/status-badge/img/gh/sdpython/pandas-streaming/tree/main.svg?style=svg
20+
:target: https://dl.circleci.com/status-badge/redirect/gh/sdpython/pandas-streaming/tree/main
2121

2222
.. image:: https://dev.azure.com/xavierdupre3/pandas_streaming/_apis/build/status/sdpython.pandas_streaming
2323
:target: https://dev.azure.com/xavierdupre3/pandas_streaming/

_unittests/ut_df/test_connex_split.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import unittest
22
import pandas
3-
from pyquickhelper.pycode import ExtTestCase
3+
from pandas_streaming.ext_test_case import ExtTestCase
44
from pandas_streaming.df import (
55
dataframe_shuffle,
66
train_test_split_weights,

_unittests/ut_df/test_connex_split_big.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import unittest
44
from collections import Counter
55
import pandas
6-
from pyquickhelper.pycode import ExtTestCase
6+
from pandas_streaming.ext_test_case import ExtTestCase
77
from pandas_streaming.df import train_test_connex_split
88

99

_unittests/ut_df/test_connex_split_cat.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import unittest
44
from collections import Counter
55
import pandas
6-
from pyquickhelper.pycode import ExtTestCase
6+
from pandas_streaming.ext_test_case import ExtTestCase
77
from pandas_streaming.df import train_test_apart_stratify
88

99

_unittests/ut_df/test_dataframe_helpers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import unittest
33
import numpy
44
import pandas
5-
from pyquickhelper.pycode import ExtTestCase
5+
from pandas_streaming.ext_test_case import ExtTestCase
66
from pandas_streaming.df import dataframe_hash_columns
77

88

_unittests/ut_df/test_dataframe_helpers_simple.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import unittest
22
import pandas
33
import numpy
4-
from pyquickhelper.pycode import ExtTestCase
4+
from pandas_streaming.ext_test_case import ExtTestCase
55
from pandas_streaming.df import dataframe_unfold
66
from pandas_streaming.df.dataframe_helpers import hash_int, hash_str, hash_float
77

0 commit comments

Comments
 (0)