Skip to content

Commit 43ea2ce

Browse files
committed
Remove explicit 2.26.0 version in python tests
Also, rename test scripts to indicate the version they are using.
1 parent 3df2172 commit 43ea2ce

File tree

8 files changed

+7
-7
lines changed

8 files changed

+7
-7
lines changed

.github/workflows/python-deps.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
5959
- name: Verify packages installed
6060
run: |
61-
$GITHUB_WORKSPACE/python-setup/tests/check_requests_123.sh ${PYTHON_VERSION}
61+
$GITHUB_WORKSPACE/python-setup/tests/check_requests_2_26_0.sh ${PYTHON_VERSION}
6262
6363
# This one shouldn't fail, but also won't install packages
6464
test-setup-python-scripts-non-standard-location:
@@ -153,5 +153,5 @@ jobs:
153153
154154
- name: Verify packages installed
155155
run: |
156-
$cmd = $Env:GITHUB_WORKSPACE + "\\python-setup\\tests\\check_requests_123.ps1"
156+
$cmd = $Env:GITHUB_WORKSPACE + "\\python-setup\\tests\\check_requests_2_26_0.ps1"
157157
powershell -File $cmd $Env:PYTHON_VERSION
File renamed without changes.
File renamed without changes.

python-setup/tests/pipenv/python-3.8/Pipfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ verify_ssl = true
66
[dev-packages]
77

88
[packages]
9-
requests = "2.26.0"
9+
requests = "*"
1010

1111
[requires]
1212
python_version = "3.8"

python-setup/tests/pipenv/requests-2/Pipfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ verify_ssl = true
66
[dev-packages]
77

88
[packages]
9-
requests = "2.26.0"
9+
requests = "*"
1010

1111
[requires]
1212
python_version = "2.7"

python-setup/tests/pipenv/requests-3/Pipfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ verify_ssl = true
66
[dev-packages]
77

88
[packages]
9-
requests = "2.26.0"
9+
requests = "*"
1010

1111
[requires]

python-setup/tests/poetry/python-3.8/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ authors = ["Your Name <you@example.com>"]
66

77
[tool.poetry.dependencies]
88
python = "^3.8"
9-
requests = "2.26.0"
9+
requests = "*"
1010

1111
[tool.poetry.dev-dependencies]
1212

python-setup/tests/poetry/requests-3/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ authors = ["Your Name <you@example.com>"]
66

77
[tool.poetry.dependencies]
88
python = "^3.6"
9-
requests = "2.26.0"
9+
requests = "*"
1010

1111
[tool.poetry.dev-dependencies]
1212

0 commit comments

Comments
 (0)