Skip to content

Commit

Permalink
Merge pull request #1237 from ranaroussi/r0.1/fix/lxml
Browse files Browse the repository at this point in the history
Restore lxml dep, set min ver = 4.9.1
  • Loading branch information
ValueRaider committed Dec 13, 2022
2 parents 829683c + 6e3282b commit 6a306b0
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.md
Expand Up @@ -277,6 +277,7 @@ To install `yfinance` using `conda`, see
- [Pandas](https://github.com/pydata/pandas) \>= 1.3.0
- [Numpy](http://www.numpy.org) \>= 1.16.5
- [requests](http://docs.python-requests.org/en/master/) \>= 2.26
- [lxml](https://pypi.org/project/lxml/) \>= 4.9.1
- [appdirs](https://pypi.org/project/appdirs) \>= 1.4.4

### Optional (if you want to use `pandas_datareader`)
Expand Down
2 changes: 2 additions & 0 deletions meta.yaml
Expand Up @@ -20,6 +20,7 @@ requirements:
- numpy >=1.16.5
- requests >=2.26
- multitasking >=0.0.7
- lxml >=4.9.1
- appdirs >= 1.4.4
- pip
- python
Expand All @@ -29,6 +30,7 @@ requirements:
- numpy >=1.16.5
- requests >=2.26
- multitasking >=0.0.7
- lxml >=4.9.1
- appdirs >= 1.4.4
- python

Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Expand Up @@ -2,4 +2,5 @@ pandas>=1.3.0
numpy>=1.16.5
requests>=2.26
multitasking>=0.0.7
lxml>=4.9.1
appdirs>=1.4.4
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -63,7 +63,7 @@
packages=find_packages(exclude=['contrib', 'docs', 'tests', 'examples']),
install_requires=['pandas>=1.3.0', 'numpy>=1.16.5',
'requests>=2.26', 'multitasking>=0.0.7',
'appdirs>=1.4.4'],
'lxml>=4.9.1', 'appdirs>=1.4.4'],
entry_points={
'console_scripts': [
'sample=sample:main',
Expand Down

0 comments on commit 6a306b0

Please sign in to comment.