change: upgrade python support version to ^3.7

This commit is contained in:
debugtalk
2022-03-21 15:15:03 +08:00
parent 4ff6c1ad05
commit 0b1ae05c2b
15 changed files with 761 additions and 617 deletions

View File

@@ -13,7 +13,7 @@ jobs:
strategy:
max-parallel: 6
matrix:
python-version: [3.6, 3.7, 3.8, 3.9]
python-version: [3.7, 3.8, 3.9, 3.10]
os: [ubuntu-latest, macos-latest] # TODO: windows-latest
steps:

View File

@@ -13,7 +13,7 @@ jobs:
strategy:
max-parallel: 12
matrix:
python-version: [3.6, 3.7, 3.8, 3.9]
python-version: [3.7, 3.8, 3.9, 3.10]
os: [ubuntu-latest, macos-latest, windows-latest]
steps:

View File

@@ -6,6 +6,7 @@
- fix: failure in getting client and server IP/port when requesting HTTPS
- fix: upgrade dependencies for security
- fix: parameterize failure caused by pydantic version
- change: upgrade python support version to ^3.7
## 3.1.6 (2021-07-18)

View File

@@ -53,7 +53,7 @@ def session_fixture(request):
testcase_summary_json["records"] = testcase_summary_json.pop("step_datas")
summary["details"].append(testcase_summary_json)
summary_path = "/Users/debugtalk/MyProjects/HttpRunner-dev/HttpRunner/examples/postman_echo/logs/request_methods/hardcode.summary.json"
summary_path = r"/Users/debugtalk/MyProjects/HttpRunner-dev/httprunner/examples/postman_echo/logs/request_methods/hardcode.summary.json"
summary_dir = os.path.dirname(summary_path)
os.makedirs(summary_dir, exist_ok=True)

View File

@@ -1,4 +1,4 @@
# NOTE: Generated By HttpRunner v3.1.4
# NOTE: Generated By HttpRunner v3.1.7
# FROM: request_methods/request_with_functions.yml

View File

@@ -1,4 +1,4 @@
# NOTE: Generated By HttpRunner v3.1.4
# NOTE: Generated By HttpRunner v3.1.7
# FROM: request_methods/request_with_testcase_reference.yml

View File

@@ -1,4 +1,4 @@
# NOTE: Generated By HttpRunner v3.1.4
# NOTE: Generated By HttpRunner v3.1.7
# FROM: request_methods/hardcode.yml

View File

@@ -1,4 +1,4 @@
# NOTE: Generated By HttpRunner v3.1.4
# NOTE: Generated By HttpRunner v3.1.7
# FROM: request_methods/request_with_functions.yml

View File

@@ -1,4 +1,4 @@
# NOTE: Generated By HttpRunner v3.1.4
# NOTE: Generated By HttpRunner v3.1.7
# FROM: request_methods/request_with_parameters.yml

View File

@@ -1,4 +1,4 @@
# NOTE: Generated By HttpRunner v3.1.4
# NOTE: Generated By HttpRunner v3.1.7
# FROM: request_methods/request_with_testcase_reference.yml

View File

@@ -1,4 +1,4 @@
# NOTE: Generated By HttpRunner v3.1.4
# NOTE: Generated By HttpRunner v3.1.7
# FROM: request_methods/request_with_variables.yml

View File

@@ -1,4 +1,4 @@
# NOTE: Generated By HttpRunner v3.1.4
# NOTE: Generated By HttpRunner v3.1.7
# FROM: request_methods/validate_with_functions.yml

View File

@@ -1,4 +1,4 @@
# NOTE: Generated By HttpRunner v3.1.4
# NOTE: Generated By HttpRunner v3.1.7
# FROM: request_methods/validate_with_variables.yml

1346
poetry.lock generated

File diff suppressed because it is too large Load Diff

View File

@@ -20,15 +20,16 @@ classifiers = [
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8"
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10"
]
include = ["docs/CHANGELOG.md"]
[tool.poetry.dependencies]
python = "^3.6.2"
python = "^3.7"
requests = "^2.22.0"
pyyaml = "^5.4.1"
jinja2 = "^2.10.3"