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

Adopt cfep 25 #48

Merged
merged 4 commits into from
Nov 13, 2024
Merged
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
4 changes: 3 additions & 1 deletion .ci_support/linux_64_.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
cdt_name:
- cos7
- conda
channel_sources:
- conda-forge
channel_targets:
- conda-forge main
docker_image:
- quay.io/condaforge/linux-anvil-cos7-x86_64
python_min:
- '3.9'
2 changes: 2 additions & 0 deletions .ci_support/osx_64_.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,5 @@ channel_targets:
- conda-forge main
macos_machine:
- x86_64-apple-darwin13.4.0
python_min:
- '3.9'
2 changes: 2 additions & 0 deletions .ci_support/win_64_.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,5 @@ channel_sources:
- conda-forge
channel_targets:
- conda-forge main
python_min:
- '3.9'
2 changes: 1 addition & 1 deletion .scripts/run_osx_build.sh

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 4 additions & 6 deletions .scripts/run_win_build.bat

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion azure-pipelines.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 9 additions & 7 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,20 +1,22 @@
{% set name = "conda-store" %}
{% set version = "2024.10.1" %}
{% set python_min = "3.10" %}


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

source:
- url: https://pypi.io/packages/source/c/conda-store/conda_store-{{ version }}.tar.gz
- url: https://pypi.org/packages/source/c/conda-store/conda_store-{{ version }}.tar.gz
sha256: 2b2c5039776d299f14af48739701def9bfc3764f67f1b7335ae9f9d88cc52fc0
folder: conda-store
- url: https://pypi.io/packages/source/c/conda-store-server/conda_store_server-{{ version }}.tar.gz
- url: https://pypi.org/packages/source/c/conda-store-server/conda_store_server-{{ version }}.tar.gz
sha256: 61451e3893e8a109d7015dbedc4748691f59c11357f92ab2face5c0e66eef760
folder: conda-store-server

build:
number: 0
number: 1

outputs:
- name: conda-store
Expand All @@ -26,7 +28,7 @@ outputs:
- conda-store = conda_store.__main__:main
requirements:
host:
- python >=3.8
- python {{ python_min }}
- pip
- hatchling >=1.14.0
- hatch-vcs
Expand All @@ -36,7 +38,7 @@ outputs:
- __win # [win]
- aiohttp >=3.8.1
- click
- python >=3.8
- python >={{ python_min }}
- rich
- ruamel.yaml
- yarl
Expand All @@ -59,7 +61,7 @@ outputs:
- conda-store-worker = conda_store_server._internal.worker.__main__:main
requirements:
host:
- python >=3.8
- python {{ python_min }}
- pip
- hatchling >=1.14.0
- hatch-vcs
Expand All @@ -81,7 +83,7 @@ outputs:
- minio
- pydantic <2.0a0
- pyjwt
- python >=3.8
- python >={{ python_min }}
- python-docker
- python-multipart
- pyyaml
Expand Down