Skip to content

Commit

Permalink
Sort install_requires dependencies (flyteorg#1931)
Browse files Browse the repository at this point in the history
* Sort `install_requires` dependencies

Signed-off-by: Bernhard Stadlbauer <11799671+bstadlbauer@users.noreply.github.com>

* Add note on maintaining alphabetical order

Signed-off-by: Bernhard Stadlbauer <11799671+bstadlbauer@users.noreply.github.com>

* Run pre-commit hooks

Signed-off-by: Bernhard Stadlbauer <11799671+bstadlbauer@users.noreply.github.com>

---------

Signed-off-by: Bernhard Stadlbauer <11799671+bstadlbauer@users.noreply.github.com>
Signed-off-by: Rafael Raposo <rafaelraposo@spotify.com>
  • Loading branch information
bstadlbauer authored and RRap0so committed Dec 15, 2023
1 parent f0c05df commit f305c37
Showing 1 changed file with 32 additions and 32 deletions.
64 changes: 32 additions & 32 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,55 +28,55 @@
]
},
install_requires=[
"googleapis-common-protos>=1.57",
"flyteidl>=1.10.0",
"wheel>=0.30.0,<1.0.0",
"pandas>=1.0.0,<2.0.0",
"pyarrow>=4.0.0,<11.0.0",
# Please maintain an alphabetical order in the following list
"adlfs",
"click>=6.6,<9.0",
"cloudpickle>=2.0.0",
"cookiecutter>=1.7.3",
"croniter>=0.3.20,<4.0.0",
"dataclasses-json>=0.5.2,<0.5.12", # TODO: remove upper-bound after fixing change in contract
"deprecated>=1.0,<2.0",
"diskcache>=5.2.1",
"docker-image-py>=0.1.10",
"docker>=4.0.0,<7.0.0",
"python-dateutil>=2.1",
"docstring-parser>=0.9.0",
"flyteidl>=1.10.0",
"fsspec>=2023.3.0,<=2023.9.2",
"gcsfs",
"gitpython",
"googleapis-common-protos>=1.57",
"grpcio",
"grpcio-status",
"importlib-metadata",
"fsspec>=2023.3.0,<=2023.9.2",
"adlfs",
"s3fs>=0.6.0",
"gcsfs",
"pyopenssl",
"joblib",
"jsonpickle",
"keyring>=18.0.1",
"kubernetes>=12.0.1",
"marshmallow-enum",
"marshmallow-jsonschema>=0.12.0",
"mashumaro>=3.9.1",
"natsort>=7.0.1",
"numpy",
"pandas>=1.0.0,<2.0.0",
# TODO: Remove upper-bound after protobuf community fixes it. https://github.com/flyteorg/flyte/issues/4359
"protobuf<4.25.0",
"pyarrow>=4.0.0,<11.0.0",
"pyopenssl",
"python-dateutil>=2.1",
"python-json-logger>=2.0.0",
"pytimeparse>=1.1.8,<2.0.0",
"pytz",
"pyyaml!=6.0.0,!=5.4.0,!=5.4.1", # pyyaml is broken with cython 3: https://github.com/yaml/pyyaml/issues/601
"keyring>=18.0.1",
"requests>=2.18.4,<3.0.0",
"rich",
"rich_click",
"s3fs>=0.6.0",
"sortedcontainers>=1.5.9,<3.0.0",
"statsd>=3.0.0,<4.0.0",
"typing_extensions",
"urllib3>=1.22,<2.0.0",
"wheel>=0.30.0,<1.0.0",
"wrapt>=1.0.0,<2.0.0",
# TODO: remove upper-bound after fixing change in contract
"dataclasses-json>=0.5.2,<0.5.12",
"marshmallow-jsonschema>=0.12.0",
"mashumaro>=3.9.1",
"marshmallow-enum",
"natsort>=7.0.1",
"docker-image-py>=0.1.10",
"typing_extensions",
"docstring-parser>=0.9.0",
"diskcache>=5.2.1",
"cloudpickle>=2.0.0",
"cookiecutter>=1.7.3",
"numpy",
"gitpython",
"kubernetes>=12.0.1",
"rich",
"rich_click",
"jsonpickle",
# TODO: Remove upper-bound after protobuf community fixes it. https://github.com/flyteorg/flyte/issues/4359
"protobuf<4.25.0",
],
extras_require=extras_require,
scripts=[
Expand Down

0 comments on commit f305c37

Please sign in to comment.