Skip to content
This repository has been archived by the owner on Feb 15, 2024. It is now read-only.

Commit

Permalink
Update deps (#224)
Browse files Browse the repository at this point in the history
* Update deps

* Fix python magic

* python magic

Co-authored-by: Fred Lefévère-Laoide <[email protected]>
Co-authored-by: dinhlongnguyen <[email protected]>
  • Loading branch information
3 people committed Apr 21, 2022
1 parent ec96555 commit 3d7fb23
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 31 deletions.
33 changes: 16 additions & 17 deletions Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,23 +4,22 @@ verify_ssl = true
name = "pypi"

[packages]
flask = ">=2.0"
flask-cors = ">=3.0"
flask-socketio = ">=5.1"
markdown = ">=3.3"
numpy = ">=1.21"
pandas = ">=1.3"
pyarrow = ">=7.0"
python-dotenv = ">=0.19"
python-magic = {version = ">=0.4", sys_platform = "!= 'win32'"}
python-magic-bin = {version = ">=0.4", sys_platform = "== 'win32'"}
pytz = ">=2021.1"
rdp = ">=0.8"
simple-websocket = ">=0.3"
tzlocal = ">=3.0"
"backports.zoneinfo" = {version=">=0.2.0", markers="python_version < '3.9'", extras=["tzdata"]}
pyngrok = ">=5.1"
flask-talisman = ">=1.0"
flask = "==2.1"
flask-cors = "==3.0.10"
flask-socketio = "==5.1.1"
markdown = "==3.3.4"
pandas = "==1.4"
pyarrow = "==7.0"
python-dotenv = "==0.19"
python-magic = {version = "==0.4.24", sys_platform = "!= 'win32'"}
python-magic-bin = {version = "==0.4.14", sys_platform = "== 'win32'"}
pytz = "==2021.3"
rdp = "==0.8"
simple-websocket = "==0.3"
tzlocal = "==3.0"
"backports.zoneinfo" = {version="==0.2.1", markers="python_version < '3.9'", extras=["tzdata"]}
pyngrok = "==5.1"
flask-talisman = "==1.0"

[dev-packages]
black = "*"
Expand Down
27 changes: 13 additions & 14 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,25 +24,24 @@


requirements = [
"flask",
"flask-cors",
"flask-socketio",
"markdown",
"numpy",
"pandas",
"python-dotenv",
"pytz",
"simple-websocket",
"tzlocal",
"backports.zoneinfo;python_version<'3.9'",
"flask-talisman",
"flask>=2.1",
"flask-cors>=3.0.10",
"flask-socketio>=5.1.1",
"markdown>=3.3.4",
"pandas>=1.4",
"python-dotenv>=0.19",
"pytz>=2021.3",
"simple-websocket>=0.3",
"tzlocal>=3.0",
"backports.zoneinfo>=0.2.1;python_version<'3.9'",
"flask-talisman>=1.0",
]

test_requirements = ["pytest>=3.8"]

extras_require = {
"ngrok": ["pyngrok>=5"],
"image": ["python-magic;platform_system!='Windows'", "python-magic-bin;platform_system=='Windows'"],
"ngrok": ["pyngrok>=5.1"],
"image": ["python-magic>=0.4.24;platform_system!='Windows'", "python-magic-bin>=0.4.14;platform_system=='Windows'"],
"rdp": ["rdp>=0.8"],
"arrow": ["pyarrow>=7.0"],
}
Expand Down

0 comments on commit 3d7fb23

Please sign in to comment.