Skip to content

Commit ae8dc60

Browse files
Merge pull request #86 from boozallen/85-requests-version-fix
#85 ⬇️ downgrade requests temporarily to work around breaki…
2 parents e17d27b + b7d49f0 commit ae8dc60

File tree

5 files changed

+12
-2
lines changed
  • build-parent
  • extensions/extensions-encryption/aissemble-extensions-encryption-vault-python
  • foundation

5 files changed

+12
-2
lines changed

build-parent/pom.xml

+5
Original file line numberDiff line numberDiff line change
@@ -398,6 +398,11 @@
398398
<packageName>krausening</packageName>
399399
<operatorAndVersion>${version.python.krausening}</operatorAndVersion>
400400
</packageDefinition>
401+
<!-- NB: #85 temp work around to requests breakage - can be removed once that is fixed: -->
402+
<packageDefinition>
403+
<packageName>requests</packageName>
404+
<operatorAndVersion>2.31.0</operatorAndVersion>
405+
</packageDefinition>
401406

402407
<!-- this is an easy way to extend anything that is in build parent and overwrite it in the defined child folders. This will allow for ease of upgrades -->
403408
<packageDefinition>

extensions/extensions-encryption/aissemble-extensions-encryption-vault-python/pyproject.toml

+2
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ setuptools = "^69.0.3"
2424
kappa-maki = ">=1.0.1"
2525
pylint = "^3.1.0"
2626

27+
# NB: #85 temp work around to requests breakage - can be removed once that is fixed:
28+
requests = "2.31.0"
2729

2830
[build-system]
2931
requires = ["poetry-core>=1.7.0"]

foundation/aissemble-foundation-core-python/pyproject.toml

+3
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,9 @@ nose = ">=1.3.7"
3535
kappa-maki = ">=1.0.1"
3636
pylint = "^3.1.0"
3737

38+
# NB: #85 temp work around to requests breakage - can be removed once that is fixed:
39+
requests = "2.31.0"
40+
3841

3942
[build-system]
4043
requires = ["poetry-core>=1.7.0"]

foundation/foundation-drift-detection/aissemble-foundation-drift-detection-client-python/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ packages = [
1212
[tool.poetry.dependencies]
1313
python = ">=3.11.4, <4"
1414
pydantic = ">=1.8.0,<2.0.0"
15-
requests = ">=2.26.0"
15+
requests = "2.31.0"
1616
krausening = ">=19"
1717
cryptography = ">=42.0.4"
1818
urllib3 = "^1.26.18"

foundation/foundation-security/aissemble-foundation-pdp-client-python/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ packages = [
1010

1111
[tool.poetry.dependencies]
1212
python = ">=3.11.4, <4"
13-
requests = ">=2.26.0"
13+
requests = "2.31.0"
1414
urllib3 = "^1.26.18"
1515

1616
[tool.poetry.group.dev.dependencies]

0 commit comments

Comments
 (0)