Skip to content

Commit

Permalink
Update dependencies marked by dependabot
Browse files Browse the repository at this point in the history
  • Loading branch information
eyvorchuk committed May 27, 2024
1 parent 5ab67f3 commit 7cd0119
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 63 deletions.
90 changes: 35 additions & 55 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 4 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ license = "GPL3"
readme = "README.md"
homepage = "http://www.pacificclimate.org/"
repository = "https://github.com/pacificclimate/thunderbird"
keywords = ["wps", "pywps", "birdhouse", "thunderbird"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
Expand Down Expand Up @@ -52,10 +53,10 @@ jinja2 = ">=2.11.3,<3.1.0"
netcdf4 = "1.6.2"
numpy = "^1.20.0"
psutil = "5.9.8"
pywps = "4.2.9"
pywps = "4.5.0"
xarray = "^2024.2.0"
nchelpers = { version = "^5.5.11", source = "pcic" }
werkzeug = "1.0.1"
werkzeug = "2.2.3"
wps-tools = { version = "^2.1.1", source = "pcic" }
cdo = "1.6.0"
poetry-dotenv-plugin = "^0.2.0"
Expand All @@ -75,7 +76,7 @@ twine = "^5.1.0"
cruft = "^2.15.0"
nbclient = ">=0.5.10,<0.6.0"
black = "22.3.0"
jupyterlab = "2.1.5"
jupyterlab = "2.2.10"
ipywidgets = "7.5.1"
nodejs = "0.1.1"
birdhouse-birdy = "0.8.4"
Expand Down
6 changes: 1 addition & 5 deletions thunderbird/processes/wps_update_metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,11 +114,7 @@ def updates_instruction_generator(self, request):
holds the path to the origial file path.
"""
if "updates_file" in request.inputs.keys():
if vars(request.inputs["updates_file"][0])["_file"] != None:
updates = request.inputs["updates_file"][
0
].file # For running in localhost
elif vars(request.inputs["updates_file"][0])["_data"] != None:
if request.inputs["updates_file"][0].data != None:
updates = request.inputs["updates_file"][
0
].data # For running in localhost
Expand Down

0 comments on commit 7cd0119

Please sign in to comment.