Skip to content

Commit

Permalink
syncing up to 366c4964f73b9c85e6b345d13a1f06961910695d
Browse files Browse the repository at this point in the history
Co-authored-by: Joey Greco <[email protected]>
  • Loading branch information
superblocksadmin and joeyagreco committed Dec 20, 2024
1 parent a09756d commit 23df60d
Show file tree
Hide file tree
Showing 4 changed files with 54 additions and 54 deletions.
102 changes: 51 additions & 51 deletions workers/python/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,69 +1,69 @@
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools >= 61.0"]
requires = [ "setuptools >= 61.0" ]

[project]
dependencies = [
"aiohttp==3.9.5",
"backoff==2.2.1",
"opentelemetry-api==1.16.0",
"opentelemetry-sdk==1.16.0",
"opentelemetry-exporter-otlp-proto-http==1.16.0",
"requests==2.32.0",
"requests-futures==1.0.1",
"python-dotenv==0.21.1",
"prometheus-client==0.14.1",
"dataclasses-json==0.5.7",
"nest_asyncio==1.5.6",
"pydash==6.0.2",
"redis==4.6.0",
"ujson==5.10.0",
"pydantic==1.10.14",
"psutil==5.9.8",
"simplejson==3.19.2",
"plotly==5.19.0",
"aiohttp==3.9.5",
"backoff==2.2.1",
"opentelemetry-api==1.16.0",
"opentelemetry-sdk==1.16.0",
"opentelemetry-exporter-otlp-proto-http==1.16.0",
"requests==2.32.3",
"requests-futures==1.0.1",
"python-dotenv==0.21.1",
"prometheus-client==0.14.1",
"dataclasses-json==0.5.7",
"nest_asyncio==1.5.6",
"pydash==6.0.2",
"redis==4.6.0",
"ujson==5.10.0",
"pydantic==1.10.14",
"psutil==5.9.8",
"simplejson==3.19.2",
"plotly==5.19.0",
]
dynamic = ["version"]
dynamic = [ "version" ]
name = "worker-py"

authors = [
{name = "Bruce Yu", email = "[email protected]"},
{name = "Frank Greco", email = "[email protected]"},
{name = "Carl Noel", email = "[email protected]"},
{name = "Joey Greco", email = "[email protected]"},
{name = "Cheng Tan", email = "[email protected]"},
{name = "Dan LaMotte", email = "[email protected]"},
{ name = "Bruce Yu", email = "[email protected]" },
{ name = "Frank Greco", email = "[email protected]" },
{ name = "Carl Noel", email = "[email protected]" },
{ name = "Joey Greco", email = "[email protected]" },
{ name = "Cheng Tan", email = "[email protected]" },
{ name = "Dan LaMotte", email = "[email protected]" },
]
description = "Python Worker for the Superblocks Execution Platform"
maintainers = [
{name = "Bruce Yu", email = "[email protected]"},
{name = "Frank Greco", email = "[email protected]"},
{name = "Carl Noel", email = "[email protected]"},
{name = "Joey Greco", email = "[email protected]"},
{name = "Cheng Tan", email = "[email protected]"},
{name = "Dan LaMotte", email = "[email protected]"},
{ name = "Bruce Yu", email = "[email protected]" },
{ name = "Frank Greco", email = "[email protected]" },
{ name = "Carl Noel", email = "[email protected]" },
{ name = "Joey Greco", email = "[email protected]" },
{ name = "Cheng Tan", email = "[email protected]" },
{ name = "Dan LaMotte", email = "[email protected]" },
]
readme = "README.md"
requires-python = ">=3.10.1"

[project.optional-dependencies]
test = [
"pytest==7.2.0",
"pytest-cov==4.0.0",
"hypothesis==6.56.3",
"pandas==1.5.3",
"numpy==1.26.4",
"pytest-asyncio==0.20.1",
"pytest-mock==3.10.0",
"pytest==7.2.0",
"pytest-cov==4.0.0",
"hypothesis==6.56.3",
"pandas==1.5.3",
"numpy==1.26.4",
"pytest-asyncio==0.20.1",
"pytest-mock==3.10.0",
]
typecheck = [
"types-requests==2.28.11.2",
"types-simplejson==3.17.7",
"types-urllib3==1.26.25.14",
"typing-inspect==0.8.0",
"typing_extensions==4.2.0",
"types-ujson==5.6.0.0",
"types-redis==4.3.21.6",
"types-requests==2.28.11.2",
"types-simplejson==3.17.7",
"types-urllib3==1.26.25.14",
"typing-inspect==0.8.0",
"typing_extensions==4.2.0",
"types-ujson==5.6.0.0",
"types-redis==4.3.21.6",
]

[project.urls]
Expand All @@ -76,13 +76,13 @@ Repository = "https://github.com/superblocksteam/worker.py"

[tool.ruff.lint]
# https://docs.astral.sh/ruff/linter/
ignore = ["E731"]
exclude = ["src/gen/*"]
exclude = [ "src/gen/*" ]
ignore = [ "E731" ]
select = [
# isort
"I001"
# isort
"I001",
]

[tool.ruff.format]
# https://docs.astral.sh/ruff/formatter/
exclude = ["src/gen/*"]
exclude = [ "src/gen/*" ]
2 changes: 1 addition & 1 deletion workers/python/requirements-slim.txt
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ pydantic==1.10.14
pydash==6.0.2
python-dotenv==0.21.1
redis==4.6.0
requests==2.32.0
requests==2.32.3
requests-futures==1.0.1
simplejson==3.19.2
six==1.16.0
Expand Down
2 changes: 1 addition & 1 deletion workers/python/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ qrcode==7.4.2
quickchart.io==1.0.1
redis==4.6.0
regex==2023.12.25
requests==2.32.0
requests==2.32.3
requests_file==1.5.1
requests_futures==1.0.1
requests_html==0.10.0
Expand Down
2 changes: 1 addition & 1 deletion workers/python/scripts/requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
requests==2.32.0
requests==2.32.3

0 comments on commit 23df60d

Please sign in to comment.