Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding audioop-lts #28300

Draft
wants to merge 6 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions recipes/audioop-lts/conda_build_config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
python_min:
- 3.13
45 changes: 45 additions & 0 deletions recipes/audioop-lts/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
{% set name = "audioop-lts" %}
{% set version = "0.2.1" %}

package:
name: {{ name|lower }}
version: {{ version }}

source:
url: https://pypi.org/packages/source/{{ name[0] }}/{{ name }}/audioop_lts-{{ version }}.tar.gz
sha256: e81268da0baa880431b68b1308ab7257eb33f356e57a5f9b1f915dfb13dd1387

build:
skip: true # [py<313]
script: {{ PYTHON }} -m pip install . -vv --no-deps --no-build-isolation
number: 0

requirements:
build:
- {{ compiler('c') }}
- {{ stdlib("c") }}
host:
- python
- setuptools
- pip
run:
- python

test:
imports:
- audioop
commands:
- pip check
requires:
- pip

about:
summary: LTS Port of Python audioop
license: EPL-2.0
license_file: LICENSE
description: An LTS port of the Python builtin module `audioop` which was deprecated since version 3.11 and removed in 3.13.
home: https://github.com/AbstractUmbra/audioop

extra:
recipe-maintainers:
- HeavyTony2