Skip to content

Commit

Permalink
Allow pydantic to float in all packages
Browse files Browse the repository at this point in the history
  • Loading branch information
harryjmoss committed Jan 25, 2024
1 parent 5864482 commit b9d4bd3
Show file tree
Hide file tree
Showing 3 changed files with 46 additions and 46 deletions.
22 changes: 11 additions & 11 deletions initialise/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,24 +6,24 @@ build-backend = "setuptools.build_meta"
name = "hyui-initialise"
version = "0.0.1"
dependencies = [
"hyui-models",
"email-validator == 1.3.0",
"pandas == 1.5.1",
"psycopg2-binary == 2.9.5",
"pydantic == 1.10.2",
"pyodbc == 4.0.35",
"SQLAlchemy == 1.4.41",
"requests == 2.28.1"
"hyui-models",
"email-validator == 1.3.0",
"pandas == 1.5.1",
"psycopg2-binary == 2.9.5",
"pydantic >= 1.10.2, <2.0",
"pyodbc == 4.0.35",
"SQLAlchemy == 1.4.41",
"requests == 2.28.1"
]

[project.optional-dependencies]
test = [
"pre-commit == 2.20.0",
"pytest == 7.1.3"
"pre-commit == 2.20.0",
"pytest == 7.1.3"
]

[tool.pytest.ini_options]
minversion = "7.1.3"
testpaths = [
"src/initialise/tests"
"src/initialise/tests"
]
6 changes: 3 additions & 3 deletions models/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ build-backend = "setuptools.build_meta"
name = "hyui-models"
version = "0.0.1"
dependencies = [
"arrow == 1.2.3",
"pydantic == 1.10.2",
"arrow == 1.2.3",
"pydantic >= 1.10.2, <2.0"
]

[project.optional-dependencies]
Expand All @@ -18,5 +18,5 @@ test = [
[tool.pytest.ini_options]
minversion = "7.1"
testpaths = [
"tests"
"tests"
]
64 changes: 32 additions & 32 deletions web/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,45 +6,45 @@ build-backend = "setuptools.build_meta"
name = "hyui-web"
version = "0.0.1"
dependencies = [
"Flask == 2.3.3",
"Flask-Caching == 2.0.1",
"Flask-Login == 0.6.2",
"celery~=5.2.7",
"dash-ag-grid ~= 2.0.0",
"dash-auth ~= 2.0.0",
"dash-bootstrap-components >= 1.2.1",
"dash-cytoscape >= 0.3.0",
"dash-daq >= 0.5.0",
"dash-iconify >= 0.1.2",
"dash-mantine-components >= 0.11.1",
"dash[celery] >= 2.9.0",
"debugpy == 1.6.7",
"flower~=1.2.0",
"gevent == 22.10.2",
"gunicorn == 20.1.0",
"hyui-models",
"loguru == 0.6.0",
"notifiers == 1.3.3",
"orjson == 3.8.7",
"pandas == 1.5.1",
"pydantic == 1.10.2",
"redis~=4.5.4",
"requests == 2.28.1",
"watchfiles~=0.19.0",
"Flask == 2.3.3",
"Flask-Caching == 2.0.1",
"Flask-Login == 0.6.2",
"celery~=5.2.7",
"dash-ag-grid ~= 2.0.0",
"dash-auth ~= 2.0.0",
"dash-bootstrap-components >= 1.2.1",
"dash-cytoscape >= 0.3.0",
"dash-daq >= 0.5.0",
"dash-iconify >= 0.1.2",
"dash-mantine-components >= 0.11.1",
"dash[celery] >= 2.9.0",
"debugpy == 1.6.7",
"flower~=1.2.0",
"gevent == 22.10.2",
"gunicorn == 20.1.0",
"hyui-models",
"loguru == 0.6.0",
"notifiers == 1.3.3",
"orjson == 3.8.7",
"pandas == 1.5.1",
"pydantic >= 1.10.2, <2.0",
"redis~=4.5.4",
"requests == 2.28.1",
"watchfiles~=0.19.0"
]

[project.optional-dependencies]
test = [
"pre-commit == 2.20.0",
"pytest == 7.1.3",
"types-requests == 2.28.11.2"
"pre-commit == 2.20.0",
"pytest == 7.1.3",
"types-requests == 2.28.11.2"
]

[tool.setuptools.package-data]
"*" = ["*.css", "*.ico", "*.js"]

[tool.pytest.ini_options]
minversion = "7.1.3"
testpaths = [
"src/web/tests"
"src/web/tests"
]

[tool.setuptools.package-data]
"*" = ["*.css", "*.ico", "*.js"]

0 comments on commit b9d4bd3

Please sign in to comment.