-
-
Notifications
You must be signed in to change notification settings - Fork 5.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
45 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
{% set name = "audioop-lts" %} | ||
{% set python_min = "3.13" %} | ||
{% set version = "0.2.1" %} | ||
|
||
package: | ||
name: {{ name|lower }} | ||
version: {{ version }} | ||
|
||
source: | ||
url: https://pypi.org/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz | ||
sha256: e81268da0baa880431b68b1308ab7257eb33f356e57a5f9b1f915dfb13dd1387 | ||
|
||
build: | ||
script: {{ PYTHON }} -m pip install . -vv | ||
noarch: python | ||
number: 0 | ||
|
||
requirements: | ||
host: | ||
- python {{ python_min }} | ||
- pip | ||
- setuptools | ||
run: | ||
- python >={{ python_min }} | ||
|
||
test: | ||
imports: | ||
- audioop | ||
requires: | ||
- python {{ python_min }} | ||
- pip | ||
commands: | ||
- pip check | ||
|
||
about: | ||
home: https://pypi.org/project/audioop-lts/ | ||
summary: 'An LTS port of the Python builtin module audioop which was deprecated since version 3.11 and removed in 3.13.' | ||
license: PSF-2.0 | ||
license_family: PSF | ||
license_file: LICENSE | ||
dev_url: https://github.com/AbstractUmbra/audioop | ||
|
||
extra: | ||
recipe-maintainers: | ||
- kynan |