Skip to content

Commit 2836d0b

Browse files
authored
Build Python 3.11 conda package (#376)
* Build Python 3.11 conda package * Bump build number to 1
1 parent 48cede7 commit 2836d0b

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.github/workflows/building-conda.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,13 @@ jobs:
1212
matrix:
1313
# We have trouble building for Windows - drop for now.
1414
os: [ubuntu-18.04, macos-10.15] # windows-2019
15-
python-version: ['3.7', '3.8', '3.9', '3.10']
15+
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
1616
torch-version: [1.13.0, 2.0.0]
1717
# We have trouble building for `cu116` due to PyTorch 1.13.0 bugs
1818
cuda-version: ['cpu', 'cu117', 'cu118']
1919
exclude:
20+
- torch-version: 1.13.0
21+
python-version: '3.11'
2022
- torch-version: 2.0.0
2123
python-version: '3.7'
2224
- torch-version: 1.13.0

conda/pytorch-scatter/meta.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ requirements:
2222

2323
build:
2424
string: py{{ environ.get('PYTHON_VERSION').replace('.', '') }}_torch_{{ environ['TORCH_VERSION'] }}_{{ environ['CUDA_VERSION'] }}
25+
number: 1
2526
script: pip install .
2627
script_env:
2728
- FORCE_CUDA

0 commit comments

Comments
 (0)