Skip to content

Commit

Permalink
Remove references to Python 3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
jlaine committed Dec 1, 2023
1 parent 44e22cd commit 3a76ef3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: 3.7
python-version: 3.8
- name: Install packages
run: pip install black ruff
- name: Run linters
Expand Down Expand Up @@ -59,7 +59,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: 3.7
python-version: 3.8
- name: Build source package
run: |
pip install -U build
Expand Down Expand Up @@ -94,7 +94,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: 3.7
python-version: 3.8
- name: Add msbuild to PATH
if: matrix.os == 'windows-latest'
uses: microsoft/setup-msbuild@v1.1
Expand All @@ -110,7 +110,7 @@ jobs:
CIBW_BEFORE_BUILD_WINDOWS: scripts\build-libsrtp.bat C:\cibw\vendor
CIBW_ENVIRONMENT: CFLAGS=-I/tmp/vendor/include LDFLAGS=-L/tmp/vendor/lib
CIBW_ENVIRONMENT_WINDOWS: INCLUDE=C:\\cibw\\vendor\\include LIB=C:\\cibw\\vendor\\lib
CIBW_SKIP: cp37-* pp37-* *-musllinux*
CIBW_SKIP: '*-musllinux*'
CIBW_TEST_COMMAND: python -m unittest discover -s {project}/tests
shell: bash
run: |
Expand Down
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 = "setuptools.build_meta"
name = "pylibsrtp"
description = "Python wrapper around the libsrtp library"
readme = "README.rst"
requires-python = ">=3.7"
requires-python = ">=3.8"
license = { text = "BSD-3-Clause" }
authors = [
{ name = "Jeremy Lainé", email = "jeremy.laine@m4x.org" },
Expand Down

0 comments on commit 3a76ef3

Please sign in to comment.