Skip to content

Commit

Permalink
Release 0.1.11 (with fix for cuda-version constraint) (#47)
Browse files Browse the repository at this point in the history
  • Loading branch information
jakirkham authored Jan 17, 2024
1 parent 70d2f67 commit d62cc1d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 12 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.26.4 FATAL_ERROR)

project(
pynvjitlink
VERSION 0.1.10
VERSION 0.1.11
LANGUAGES CXX CUDA
)

Expand Down
10 changes: 1 addition & 9 deletions conda/recipes/pynvjitlink/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,6 @@
{% set project_data = data.get("project") %}
{% set project_urls = project_data["urls"] %}

{% if cuda_compiler_version %}
{% set cuda_major = cuda_compiler_version.split(".")[0]|int %}
{% set cuda_minor = cuda_compiler_version.split(".")[1]|int %}
{% else %}
{% set cuda_major = 0 %}
{% set cuda_minor = 0 %}
{% endif %}

package:
name: pynvjitlink
version: {{ project_data["version"] }}
Expand Down Expand Up @@ -44,7 +36,7 @@ requirements:
run:
- python
- numba >=0.57
- {{ pin_compatible('cuda-version', min_pin='x', upper_bound=(cuda_major ~ "." ~ (cuda_minor + 1))) }}
- {{ pin_compatible('cuda-version', min_pin='x', max_pin='x.x') }}

about:
home: {{ project_urls["Homepage"] }}
Expand Down
2 changes: 1 addition & 1 deletion pynvjitlink/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1.10
0.1.11
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ build-backend = "scikit_build_core.build"

[project]
name = "pynvjitlink"
version = "0.1.10"
version = "0.1.11"
description = "nvJitLink Python binding"
readme = { file = "README.md", content-type = "text/markdown" }
authors = [
Expand Down

0 comments on commit d62cc1d

Please sign in to comment.