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
20 changes: 16 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ on:
pull_request:
push:
branches: [ staging, master ]
schedule:
# Weekly on Sunday
- cron: '0 0 * * 0'

jobs:
pre-commit:
Expand All @@ -18,13 +21,22 @@ jobs:
extra_args: --hook-stage manual --all-files

checks:
name: Check Python ${{ matrix.python-version }} on ${{ matrix.runs-on }}
runs-on: ${{ matrix.runs-on }}
name: Check Python ${{ matrix.python-version }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
runs-on: [ubuntu-22.04, macos-13, windows-2022]
os: ["ubuntu-24.04", "macos-14", "windows-2022"]
python-version: ["3.10", "3.11", "3.12"]
include:
- os: ubuntu-22.04
python-version: 3.7
- os: ubuntu-24.04
python-version: 3.8
- os: ubuntu-24.04
python-version: 3.9
- os: ubuntu-24.04
python-version: 3.13
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
Expand Down
30 changes: 0 additions & 30 deletions .github/workflows/test-latest.yml

This file was deleted.

7 changes: 4 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,21 +17,22 @@ maintainers = [
license = { file = "LICENSE" }
description = "A Python client for interacting with a VirES server"
readme = "README.rst"
requires-python = ">=3.6"
requires-python = ">=3.7"
classifiers = [
"License :: OSI Approved :: MIT License",
"Topic :: Scientific/Engineering",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"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",
"Development Status :: 5 - Production/Stable",
]
dynamic = ["version"]
Expand Down
Loading