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

Update to 2.1.0 #17

Merged
merged 3 commits into from
Nov 24, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
14 changes: 7 additions & 7 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
{% set name = "urllib3" %}
{% set version = "2.0.3" %}
{% set version = "2.1.0" %}

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

source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
sha256: bee28b5e56addb8226c96f7f13ac28cb4c301dd5ea8a6ca179c0b9835e032825
sha256: df7aa8afb0148fa78488e7899b2c59b5f4ffcfa82e6c54ccb9dd37c1d7b52d54


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

requirements:
Expand All @@ -22,15 +22,15 @@ requirements:
- hatchling >=1.6.0,<2
run:
- python
# optional deps [socks]
- pysocks >=1.5.6,<2.0,!=1.5.7
- brotli-python >=1.0.9
run_constrained:
# based on https://github.com/urllib3/urllib3/issues/2680
- requests >=2.26.0
- selenium >=4.4.3

test:
imports:
- urllib3
- urllib3.contrib
- urllib3.contrib._securetransport
- urllib3.util
commands:
- pip check
Expand Down