Skip to content

Commit

Permalink
Unpin pandas to allow permit newer versions of pandas and numpy
Browse files Browse the repository at this point in the history
  • Loading branch information
mrosales committed Nov 13, 2023
1 parent d2ad48c commit 65fc2b7
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion airflow/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@
# under the License.
#

version = '1.10.10+siftpatch7'
version = '1.10.10+siftpatch8'
9 changes: 6 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ def write_version(filename=os.path.join(*[my_dir, "airflow", "git_version"])):
'azure-cosmos>=3.0.1'
]
azure_data_lake = [
'azure-datalake-store>=0.0.45'
'azure-datalake-store>=0.0.45',
'azure-mgmt-datalake-store>=0.5.0',
'azure-mgmt-resource>=2.2.0',
]
Expand Down Expand Up @@ -266,7 +266,8 @@ def write_version(filename=os.path.join(*[my_dir, "airflow", "git_version"])):
'google-cloud-vision>=0.35.2',
'grpcio-gcp>=0.2.2',
'httplib2~=0.15',
'pandas-gbq',
# Exclude unused pandas-gbq from Sift fork as it pins Pandas to a very old version.
# 'pandas-gbq',
]
grpc = [
'grpcio>=1.15.0',
Expand Down Expand Up @@ -572,7 +573,9 @@ def write_version(filename=os.path.join(*[my_dir, "airflow", "git_version"])):
'lazy_object_proxy~=1.3',
'markdown>=2.5.2, <3.0',
'marshmallow-sqlalchemy>=0.16.1, <0.19.0;python_version<"3.6"',
'pandas>=0.17.1, <1.0.0',
# Un-pin pandas requirement in Sift fork to help fix M1 issues.
# 'pandas>=0.17.1, <1.0.0',
'pandas',
'pendulum==1.4.4',
'psutil>=4.2.0, <6.0.0',
'pygments>=2.0.1, <3.0',
Expand Down

0 comments on commit 65fc2b7

Please sign in to comment.