Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: conda-forge/cssselect2-feedstock
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: main
Choose a base ref
...
head repository: AnacondaRecipes/cssselect2-feedstock
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
Able to merge. These branches can be automatically merged.
  • 3 commits
  • 2 files changed
  • 1 contributor

Commits on Jan 29, 2025

  1. intial commit

    msentissi committed Jan 29, 2025
    Copy the full SHA
    9a6982b View commit details
  2. capitalize true

    msentissi committed Jan 29, 2025
    Copy the full SHA
    6587cc3 View commit details

Commits on Jan 31, 2025

  1. Merge pull request #2 from AnacondaRecipes/PKG-5106_cssselect2_0.7.0

    cssselect2 0.7.0 ❄️
    msentissi authored Jan 31, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    f7a4b8f View commit details
Showing with 29 additions and 13 deletions.
  1. +6 −0 abs.yaml
  2. +23 −13 recipe/meta.yaml
6 changes: 6 additions & 0 deletions abs.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
build_env_vars:
ANACONDA_ROCKET_ENABLE_PY313: yes

upload_channels:
- sfe1ed40

36 changes: 23 additions & 13 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,42 +1,52 @@
{% set name = "cssselect2" %}
{% set version = "0.2.1" %}
{% set version = "0.7.0" %}

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

source:
skip: True # [py<37]
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
sha256: 505d2ce3d3a1d390ddb52f7d0864b7efeb115a5b852a91861b498b92424503ab
sha256: 1ccd984dab89fc68955043aca4e1b03e0cf29cad9880f6e28e3ba7a74b14aa5a

build:
number: 1
script: "{{ PYTHON }} -m pip install . -vv"
noarch: python
number: 0
script: {{ PYTHON }} -m pip install . -vv --no-deps --no-build-isolation

requirements:
host:
- python
- pip
- setuptools
- tinycss2
- flit-core >=3.2,<4
run:
- python
- tinycss2
- webencodings

test:
source_files:
- tests
imports:
- cssselect2
requires:
- pip
- pytest
commands:
- pip check
- pytest -v

about:
home: https://github.com/Kozea/cssselect2
home: https://doc.courtbouillon.org/cssselect2/
license: BSD-3-Clause
license_family: BSD
license_file: LICENSE
summary: CSS selectors for Python ElementTree
summary: cssselect2 is a straightforward implementation of CSS4 Selectors for markup documents
description: |
cssselect2 is a straightforward implementation of CSS3 Selectors for markup documents.
doc_url: http://cssselect2.readthedocs.io
cssselect2 is a straightforward implementation of CSS4 Selectors for
markup documents (HTML, XML, etc.) that can be read by ElementTree-like
parsers (including cElementTree, lxml, html5lib, etc.)
doc_url: https://doc.courtbouillon.org/cssselect2/
dev_url: https://github.com/Kozea/cssselect2

extra: