Skip to content

Commit

Permalink
CI (#108)
Browse files Browse the repository at this point in the history
* ci

* update action versions

* enable manual trigger

* update version mentionings

* update action: checkout-python
  • Loading branch information
almarklein authored Mar 8, 2024
1 parent b941256 commit 4ea902c
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 14 deletions.
26 changes: 15 additions & 11 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: CI

on:
workflow_dispatch:
push:
branches: [ master ]
pull_request:
Expand All @@ -15,9 +16,9 @@ jobs:
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python 3.10
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install dependencies
Expand Down Expand Up @@ -49,23 +50,26 @@ jobs:
- name: Linux py310
os: ubuntu-latest
pyversion: '3.10'
- name: Linux py311
- name: Linux py312
os: ubuntu-latest
pyversion: '3.11'
# OS's
pyversion: '3.12'
- name: Linux pypy
os: ubuntu-latest
pyversion: 'pypy3.9'
- name: Windows py39
# OS's
- name: Linux py311
os: ubuntu-latest
pyversion: '3.11'
- name: Windows py311
os: windows-latest
pyversion: '3.9'
- name: MacOS py39
pyversion: '3.11'
- name: MacOS py311
os: macos-latest
pyversion: '3.9'
pyversion: '3.11'
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.pyversion }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.pyversion }}
- name: Install dependencies
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ and adds support for e.g. cameras and seeking.

## Installation

This library works with any version of Python 3.5+ (including Pypy).
This library works with any version of Python 3.7+ (including Pypy).
There are no further dependencies. The wheels on Pypi include the ffmpeg
executable for all common platforms (Windows 7+, Linux kernel 2.6.32+,
OSX 10.9+). Install using:
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,12 +74,11 @@
"Operating System :: POSIX",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"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",
],
)

0 comments on commit 4ea902c

Please sign in to comment.