Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DATAGO-85484 Bump min python version #44

Merged
merged 1 commit into from
Sep 26, 2024
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
9 changes: 6 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ permissions:

jobs:
ci:
uses: SolaceDev/solace-public-workflows/.github/workflows/[email protected]
uses: SolaceDev/solace-public-workflows/.github/workflows/hatch_ci.yml@latest
with:
min-python-version: "3.9"
secrets:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
SONAR_HOST_URL: ${{ vars.SONAR_HOST_URL }}
Expand All @@ -29,8 +31,9 @@ jobs:
ssh-key: ${{ secrets.COMMIT_KEY }}

- name: Set up Hatch
uses: SolaceDev/solace-public-workflows/.github/actions/[email protected]

uses: SolaceDev/solace-public-workflows/.github/actions/hatch-setup@latest
with:
min-python-version: "3.9"
- name: Set Up Docker Buildx
id: builder
uses: docker/setup-buildx-action@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ permissions:

jobs:
release:
uses: SolaceDev/solace-public-workflows/.github/workflows/hatch_release_pypi.yml@v1.0.1
uses: SolaceDev/solace-public-workflows/.github/workflows/hatch_release_pypi.yml@latest
with:
ENVIRONMENT: pypi
version: ${{ github.event.inputs.version }}
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ authors = [
]
description = "Solace AI Connector - make it easy to connect Solace PubSub+ Event Brokers to AI/ML frameworks"
readme = "README.md"
requires-python = ">=3.8"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
Expand Down
Loading