Skip to content

Commit

Permalink
chore: Drop python 3.8 support and improve ci file name (#237)
Browse files Browse the repository at this point in the history
* chore: Drop python 3.8 support

* Fix ci

* Test against 3.9 and 3.12

* Rename ci file
  • Loading branch information
Wh1isper authored Nov 18, 2024
1 parent 314ada9 commit 4dd3dcc
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Testing docs build
name: Test docs build

on:
push:
Expand All @@ -12,7 +12,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.11"]
python-version: ["3.9", "3.12"]

steps:
- uses: actions/checkout@v3
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Testing example extensions
name: Test example extensions

on:
push:
Expand All @@ -12,7 +12,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.11"]
python-version: ["3.9", "3.12"]

steps:
- uses: actions/checkout@v3
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Testing docker image build
name: Test docker image build

on:
pull_request:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Python package
name: Test python package

on:
push:
Expand All @@ -12,7 +12,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.9", "3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v3
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Release docker image
name: Release image

on:
workflow_dispatch: {}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: pre-commit
name: pre-commit-check

on:
pull_request:
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ build-backend = "hatchling.build"
name = "sdgx"
description = "synthetic-data-generator"
keywords = ["synthetic data", "hitsz-ids"]
requires-python = ">=3.8"
requires-python = ">=3.9"

dependencies = [
"pandas",
Expand Down

0 comments on commit 4dd3dcc

Please sign in to comment.