Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
max-parallel: 1
matrix:
python-version: [ 3.9 ]
python-version: [3.9]
steps:
- name: Checkout source
uses: actions/checkout@v2
Expand Down Expand Up @@ -138,7 +138,7 @@ jobs:
strategy:
max-parallel: 6
matrix:
python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12" ]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
fail-fast: false
steps:
- name: Checkout source
Expand Down Expand Up @@ -180,7 +180,7 @@ jobs:
strategy:
max-parallel: 4
matrix:
go-version: [ "1.22", "1.23", "1.24", "1.25" ]
go-version: ["1.22", "1.23", "1.24", "1.25"]
fail-fast: false
steps:
- name: Checkout source
Expand Down Expand Up @@ -262,7 +262,7 @@ jobs:
fail: true

publish_python_package:
needs: [ python_tests, go_tests, proto_yml_generation_test ]
needs: [python_tests, go_tests, proto_yml_generation_test]
runs-on: ubuntu-latest
steps:
- name: Checkout source
Expand Down
6 changes: 3 additions & 3 deletions openapiart/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ requests
typing_extensions
click==8.1.7
black==22.3.0
grpcio-tools~=1.70.0
grpcio-tools~=1.80.0
pipreqs==0.4.11
protobuf~=5.29.5
grpcio~=1.70.0
protobuf~=6.33.6
grpcio~=1.80.0
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ version = "0.3.41"
dynamic = ["dependencies", "optional-dependencies"]
description = "The OpenAPI Artifact Generator Python Package"
readme = "readme.md"
requires-python = ">=3.8,<4"
requires-python = ">=3.9,<4"
license = "MIT"
license-files = ["LICENSE"]
authors = [
Expand All @@ -23,11 +23,11 @@ classifiers = [
"Intended Audience :: Developers",
"Topic :: Software Development :: Testing :: Traffic Generation",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]

[tool.setuptools.dynamic]
Expand Down
Loading