Added a wildcard patch specifier for aiohttp

This commit is contained in:
Harrison Deng 2025-01-23 19:23:42 +00:00
parent 744a6c2009
commit 39125c848e
3 changed files with 45 additions and 2 deletions

43
autoBIGS.engine/meta.yaml Normal file
View File

@ -0,0 +1,43 @@
{% set name = "autoBIGS.engine" %}
{% set version = "0.7.2.dev0+g744a6c2.d20250123" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: file:///workspaces/automlst.engine/dist/autobigs_engine-0.7.2.dev0%2Bg744a6c2.d20250123.tar.gz
sha256: 3ae51ca757fa27cef577aa7733d8308ca5b74f86dc7996149bc555d0468d938e
build:
noarch: python
script: {{ PYTHON }} -m pip install . -vv --no-deps --no-build-isolation
number: 0
requirements:
host:
- python >=3.11
- setuptools >=64
- setuptools-scm >=8
- pip
run:
- python >=3.11
- biopython ==1.85
- aiohttp ==3.11.*
test:
imports:
- autobigs
commands:
- pip check
requires:
- pip
about:
summary: A library to rapidly fetch fetch MLST profiles given sequences for various diseases.
license: GPL-3.0
license_file: LICENSE
extra:
recipe-maintainers:
- RealYHD

View File

@ -9,7 +9,7 @@ readme = "README.md"
dependencies = [ dependencies = [
"biopython==1.85", "biopython==1.85",
"aiohttp[speedups]==3.11", "aiohttp[speedups]==3.11.*",
] ]
requires-python = ">=3.11" requires-python = ">=3.11"
description = "A library to rapidly fetch fetch MLST profiles given sequences for various diseases." description = "A library to rapidly fetch fetch MLST profiles given sequences for various diseases."

View File

@ -1,4 +1,4 @@
aiohttp[speedups]==3.11 aiohttp[speedups]==3.11.*
biopython==1.85 biopython==1.85
pytest pytest
pytest-asyncio pytest-asyncio