Skip to content

Commit

Permalink
Reduce pins in setup.py per standard Python recommendations (#1702)
Browse files Browse the repository at this point in the history
* Update setup.py

* Bump changelog

* adjust requirements.txt

* Update CHANGELOG


Adjust tests temporarily


test requires


no aiofiles


no aiohttp


no alembic


no click


no cloudpickle


no dask


no fastapi


no furl


no networkx


no psutil


no pydantic


no python socketio


no requests


remove pins

* add pins back

* add half back in

* adjust pins

* [pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci

* Remove more pins...

* drop pins

* pin

* pins

* dask and psutil

* remove more pins

* last pins!

* fix pins

* [pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci

* bump werkzeug

* [pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci

* Clean up

* fix reqs

* Update CHANGELOG.md

* Update setup.py

* Update setup.py

* [pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci

* Update requirements.txt

* Update setup.py

* Update requirements-client.txt

* Update CHANGELOG.md

* Update requirements.txt

* Update setup.py

* Update requirements-client.txt

* Update requirements-client.txt

---------

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Sankalp Sanand <[email protected]>
  • Loading branch information
3 people authored Jun 23, 2023
1 parent 33fd9a9 commit 7e7bf51
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 27 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Skipping functional tests for azure blob storage and gcp storage how to guides since they require credentials to run.

### Operations

- Reduce the number of pinned version numbers in the `setup.py`, `requirements.txt`, and `requirements-client.txt`

## [0.227.0-rc.0] - 2023-06-13

### Authors
Expand Down
18 changes: 9 additions & 9 deletions requirements-client.txt
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
aiofiles>=0.8.0,<=22.1.0
aiohttp==3.8.1
cloudpickle>=2.0.0,<=2.2.0
aiofiles>=0.8.0
aiohttp>=3.8.1
cloudpickle>=2.0.0
dask[distributed]>=2022.6.0
furl==2.1.3
networkx==2.8.6
requests>=2.24.0,<=2.28.1
simplejson==3.17.6
toml==0.10.2
watchdog==2.2.1
furl>=2.1.3
networkx>=2.8.6
requests>=2.24.0
simplejson>=3.17.6
toml>=0.10.2
watchdog>=2.0.3
36 changes: 18 additions & 18 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
aiofiles>=0.8.0,<=22.1.0
aiofiles>=0.8.0
aiohttp>=3.8.1
alembic>=1.8.0,<=1.8.1
click==8.1.3
cloudpickle>=2.0.0,<=2.2.0
alembic>=1.8.0
click>=8.1.3
cloudpickle>=2.0.0
dask[distributed]>=2022.6.0
fastapi>=0.93.0,<=0.94.1
furl==2.1.3
networkx==2.8.6
psutil>=5.9.0,<=5.9.2
pydantic>=1.10.1,<=1.10.2
python-socketio==5.7.1
requests>=2.24.0,<=2.28.1
simplejson==3.17.6
sqlalchemy>=1.4.37,<=1.4.41
sqlalchemy_utils==0.38.3
toml==0.10.2
uvicorn[standard]>=0.18.2,<=0.18.3
watchdog==2.2.1
werkzeug>=2.0.3,<=2.2.2
fastapi>=0.93.0
furl>=2.1.3
networkx>=2.8.6
psutil>=5.9.0
pydantic>=1.10.1
python-socketio>=5.7.1
requests>=2.24.0
simplejson>=3.17.6
sqlalchemy>=1.4.37
sqlalchemy_utils>=0.38.3
toml>=0.10.2
uvicorn[standard]==0.18.3
watchdog>=2.2.1
werkzeug>=2.0.3

0 comments on commit 7e7bf51

Please sign in to comment.