Compare commits

...

5 Commits

Author SHA1 Message Date
ValueRaider
3537ec3e4b Bump version to 0.1.90 2022-12-13 15:36:36 +00:00
ValueRaider
6a306b0353 Merge pull request #1237 from ranaroussi/r0.1/fix/lxml
Restore lxml dep, set min ver = 4.9.1
2022-12-13 15:35:12 +00:00
ValueRaider
6e3282badb Restore lxml dep, set min ver = 4.9.1 2022-12-13 15:03:13 +00:00
ValueRaider
829683ca02 Bump version to 0.1.89 2022-12-12 22:06:28 +00:00
ValueRaider
3011cb324d Bump version to 0.1.88 2022-12-12 22:04:02 +00:00
6 changed files with 16 additions and 3 deletions

View File

@@ -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

View File

@@ -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`)

View File

@@ -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

View File

@@ -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

View File

@@ -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',

View File

@@ -1 +1 @@
version = "0.1.87"
version = "0.1.90"