Skip to content

Commit

Permalink
Support for py37+
Browse files Browse the repository at this point in the history
  • Loading branch information
pablodz committed Jun 16, 2021
1 parent d61434c commit 2da863c
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8, 3.9]
python-version: [3.7, 3.8, 3.9]

env:
USING_COVERAGE: "3.10"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ pw-cli info 0
```
> To uninstall pipewire [clic here](./docs/UNINSTALL_PIPEWIRE.md).
2. Python 3.8+
2. Python 3.7+
3. Ubuntu 20.04+

## Tutorial
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,15 @@ build-backend = "flit_core.buildapi"
module = "pipewire_python"
author = "Pablo Diaz & Anna Absi"
home-page = "https://github.com/pablodz/pipewire_python"
requires-python = ">=3.8"
requires-python = ">=3.7"
description-file = "README.md"
classifiers = [ "License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Topic :: Multimedia :: Sound/Audio :: Capture/Recording",
"Topic :: Multimedia :: Sound/Audio :: Players",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
]
Expand Down
3 changes: 2 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
[tox]
isolated_build = True
envlist = py395,py385
envlist = py395,py385,py375

[gh-actions]
python =
3.7: py37
3.8: py38
3.9: py39

Expand Down

0 comments on commit 2da863c

Please sign in to comment.