Skip to content

Commit db38279

Browse files
to 0.4.1, with install requirements
1 parent 47288fc commit db38279

File tree

4 files changed

+16
-13
lines changed

4 files changed

+16
-13
lines changed

examples/example_chaining.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@
88

99
# Import data -----
1010

11-
url = ('https://raw.github.com/pandas-dev'
12-
'/pandas/master/pandas/tests/data/tips.csv')
11+
url = ('https://raw.githubusercontent.com/pandas-dev/pandas/main/pandas/tests/io/data/csv/tips.csv')
1312
df = pd.read_csv(url)
1413

1514

requirements.txt

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
1-
# Dev/Deployment
2-
sphinx
3-
sphinx_rtd_theme
4-
nose
5-
coverage
6-
pypi-publisher
1+
greenlet==1.1.2
2+
joblib==1.1.0
3+
numpy==1.23.2
4+
pandas==1.4.3
5+
pymongo==4.2.0
6+
python-dateutil==2.8.2
7+
pytz==2022.2.1
8+
scikit-learn==1.1.2
9+
scipy==1.9.0
10+
six==1.16.0
11+
SQLAlchemy==1.4.40
12+
threadpoolctl==3.1.0

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.4.0
2+
current_version = 0.4.1
33

44
[bdist_wheel]
55
universal = 1

setup.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
from codecs import open
33
from os import path
44

5-
__version__ = '0.4.0'
5+
__version__ = '0.4.1'
66

77
with open("README.md", "r") as fh:
88
long_description = fh.read()
@@ -31,8 +31,6 @@
3131
packages=find_packages(exclude=['docs', 'tests*']),
3232
include_package_data=True,
3333
author='Thierry Moudiki',
34-
install_requires=["numpy >= 1.13.0", "pandas >= 0.25.1",
35-
"pymongo >= 3.10.1", "scipy >= 0.19.0",
36-
"SQLAlchemy >= 1.3.9", "scikit-learn >= 0.18.0"].append(install_requires),
34+
install_requires=install_requires,
3735
author_email='[email protected]'
3836
)

0 commit comments

Comments
 (0)