Compare commits

...

7 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
ValueRaider
366cfc0795 Merge pull request #1231 from ranaroussi/r0.1/fix/reqs
Bump pandas to 1.3.0 ; Remove unused lxml
2022-12-10 18:17:51 +00:00
ValueRaider
cbd4b924b8 Bump pandas to 1.3.0 ; Remove unused lxml 2022-12-10 14:25:07 +00:00
6 changed files with 26 additions and 18 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

@@ -274,12 +274,11 @@ To install `yfinance` using `conda`, see
### Requirements
- [Python](https://www.python.org) \>= 2.7, 3.4+
- [Pandas](https://github.com/pydata/pandas) (tested to work with
\>=0.23.1)
- [Numpy](http://www.numpy.org) \>= 1.11.1
- [requests](http://docs.python-requests.org/en/master/) \>= 2.14.2
- [lxml](https://pypi.org/project/lxml/) \>= 4.5.1
- [appdirs](https://pypi.org/project/appdirs) \>=1.4.4
- [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.58" %}
{% set version = "0.1.90" %}
package:
name: "{{ name|lower }}"
@@ -16,21 +16,21 @@ build:
requirements:
host:
- pandas >=0.24.0
- pandas >=1.3.0
- numpy >=1.16.5
- requests >=2.21
- requests >=2.26
- multitasking >=0.0.7
- lxml >=4.5.1
- lxml >=4.9.1
- appdirs >= 1.4.4
- pip
- python
run:
- pandas >=0.24.0
- pandas >=1.3.0
- numpy >=1.16.5
- requests >=2.21
- requests >=2.26
- multitasking >=0.0.7
- lxml >=4.5.1
- lxml >=4.9.1
- appdirs >= 1.4.4
- python

View File

@@ -1,6 +1,6 @@
pandas>=0.24.0
pandas>=1.3.0
numpy>=1.16.5
requests>=2.26
multitasking>=0.0.7
lxml>=4.5.1
lxml>=4.9.1
appdirs>=1.4.4

View File

@@ -61,9 +61,9 @@ setup(
platforms=['any'],
keywords='pandas, yahoo finance, pandas datareader',
packages=find_packages(exclude=['contrib', 'docs', 'tests', 'examples']),
install_requires=['pandas>=0.24.0', 'numpy>=1.15',
install_requires=['pandas>=1.3.0', 'numpy>=1.16.5',
'requests>=2.26', 'multitasking>=0.0.7',
'lxml>=4.5.1', '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"