Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
3537ec3e4b | ||
|
|
6a306b0353 | ||
|
|
6e3282badb | ||
|
|
829683ca02 | ||
|
|
3011cb324d |
@@ -1,6 +1,15 @@
|
||||
Change Log
|
||||
===========
|
||||
|
||||
0.1.90
|
||||
------
|
||||
- Restore lxml req, increase min ver #1237
|
||||
|
||||
0.1.89
|
||||
------
|
||||
- Remove unused incompatible dependency #1222
|
||||
- Fix minimum Pandas version #1230
|
||||
|
||||
0.1.87
|
||||
------
|
||||
- Fix localizing midnight when non-existent (DST) #1176
|
||||
|
||||
@@ -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`)
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{% set name = "yfinance" %}
|
||||
{% set version = "0.1.87" %}
|
||||
{% set version = "0.1.90" %}
|
||||
|
||||
package:
|
||||
name: "{{ name|lower }}"
|
||||
@@ -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
|
||||
@@ -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
|
||||
|
||||
|
||||
@@ -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
setup.py
2
setup.py
@@ -63,7 +63,7 @@ setup(
|
||||
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',
|
||||
|
||||
@@ -1 +1 @@
|
||||
version = "0.1.87"
|
||||
version = "0.1.90"
|
||||
|
||||
Reference in New Issue
Block a user