Skip to content

Commit

Permalink
Merge pull request #16354 from natefoo/packages-pin-pydantic
Browse files Browse the repository at this point in the history
[23.0] Pin pydantic in packages to <2
  • Loading branch information
mvdbeek authored Jun 30, 2023
2 parents 9893cb3 + 492b2ee commit 34e7580
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 15 deletions.
4 changes: 2 additions & 2 deletions packages/app/setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ install_requires =
paramiko!=2.9.0,!=2.9.1
pebble
pulsar-galaxy-lib>=0.15.0.dev0
pydantic
pydantic<2
pysam>=0.20
PyJWT
PyYAML
Expand All @@ -84,4 +84,4 @@ console_scripts =
[options.packages.find]
exclude =
galaxy.tools.bundled*
tests*
tests*
4 changes: 2 additions & 2 deletions packages/data/setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ install_requires =
numpy
parsley
pycryptodome
pydantic[email]
pydantic[email]<2
pylibmagic
python-magic
pysam>=0.20
Expand All @@ -68,4 +68,4 @@ console_scripts =

[options.packages.find]
exclude =
tests*
tests*
4 changes: 2 additions & 2 deletions packages/tool_util/setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ install_requires =
lxml
MarkupSafe
packaging<22
pydantic
pydantic<2
PyYAML
requests
sortedcontainers
Expand Down Expand Up @@ -68,4 +68,4 @@ edam =

[options.packages.find]
exclude =
tests*
tests*
4 changes: 2 additions & 2 deletions packages/tours/setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ version = 23.0.4.dev0
include_package_data = True
install_requires =
galaxy-navigation
pydantic
pydantic<2
PyYAML
packages = find:
python_requires = >=3.7
Expand All @@ -44,4 +44,4 @@ console_scripts =

[options.packages.find]
exclude =
tests*
tests*
6 changes: 3 additions & 3 deletions packages/web_apps/setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ install_requires =
apispec
Babel
Cheetah3
fastapi>=0.68.2,!=0.69.0,!=0.70.0,!=0.70.1
fastapi>=0.68.2,!=0.69.0,!=0.70.0,!=0.70.1,<0.99
fastapi-utils
gunicorn
gxformat2
Expand All @@ -51,7 +51,7 @@ install_requires =
MarkupSafe
mercurial
Paste
pydantic
pydantic<2
PyJWT
python-dateutil
python-multipart # required to support form parsing in FastAPI/Starlette
Expand All @@ -74,4 +74,4 @@ python_requires = >=3.7
[options.packages.find]
exclude =
tests*
tool_shed.test*
tool_shed.test*
4 changes: 2 additions & 2 deletions packages/web_framework/setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ install_requires =
babel
MarkupSafe
paste
pydantic
pydantic<2
requests
Routes
SQLAlchemy>=1.4.25,<2
Expand All @@ -49,4 +49,4 @@ python_requires = >=3.7

[options.packages.find]
exclude =
tests*
tests*
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ dictobj = "*"
dnspython = "*"
docutils = "!=0.17, !=0.17.1"
edam-ontology = "*"
fastapi = ">=0.71.0, !=0.89.0" # https://github.com/tiangolo/fastapi/issues/4041 https://github.com/tiangolo/fastapi/issues/5861
fastapi = ">=0.71.0, !=0.89.0, <0.99" # https://github.com/tiangolo/fastapi/issues/4041 https://github.com/tiangolo/fastapi/issues/5861
fastapi-utils = "*"
fs = "*"
future = "*"
Expand Down Expand Up @@ -80,7 +80,7 @@ pebble = "*"
psutil = "*"
pulsar-galaxy-lib = ">=0.15.0.dev0"
pycryptodome = "*"
pydantic = {version = "*", extras = ["email"]}
pydantic = {version = "<2", extras = ["email"]}
PyJWT = "*"
pykwalify = "*"
pylibmagic = "*"
Expand Down

0 comments on commit 34e7580

Please sign in to comment.