Conversation
|
This happend after your merge: C:\Users\KA1962
Package Plan ## environment location: C:\Progs\miniconda3\envs\py312f-test added / updated specs: The following packages will be downloaded: The following packages will be UPDATED: certifi 2024.12.14-pyhd8ed1ab_0 --> 2025.1.31-pyhd8ed1ab_0 Proceed ([y]/n)? y Downloading and Extracting Packages: Preparing transaction: done C:\Users\KA1962
All requested packages already installed. C:\Users\KA1962 Name Version Build Channel still the old version |
|
This requires a new Playwright release, e.g. v1.51.0 in order to include that change. |
This PR modifies our conda package configuration to use
noarch: pythonin our meta.yaml. This change will help us distribute a single package that works across all Python versions (>=3.9 as specified in our requirements) instead of creating separate packages for each Python version.Key changes:
noarch: pythonto meta.yaml build configurationBackground:
Previously, our conda packages were being built specifically for each Python version (e.g., py39, py312, py313), which made distribution and maintenance more complex. By switching to
noarch: python, we rely on the Python version requirements specified in meta.yaml (python >=3.9) to handle compatibility, while producing a single package that works across all supported Python versions.Fixes #2740