Skip to content

Commit

Permalink
Update github actions versions and change minimal Python version
Browse files Browse the repository at this point in the history
  • Loading branch information
sdiemer committed Sep 28, 2023
1 parent ecc73f6 commit 3a012d2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/python-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,19 +16,18 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [3.7, 3.9]
python-version: [3.9, 3.11]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python3 -m pip install --upgrade pip
python3 -m pip install flake8
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
python3 -m pip install flake8 lxml
python3 setup.py install
- name: Lint code with Python ${{ matrix.python-version }}
run: |
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ MetaCast is a format to store and export metadata of rich media videos and an AP

Examples of use are avaible in the tests folder.

Requires: Python 3.7+
Requires: Python 3.9+

0 comments on commit 3a012d2

Please sign in to comment.