Skip to content

Commit e144115

Browse files
committed
Drop python 3.8 and add python 3.13
1 parent 2ee19d7 commit e144115

2 files changed

Lines changed: 5 additions & 4 deletions

File tree

.github/workflows/make_packages.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,28 +21,29 @@ jobs:
2121
fail-fast: false
2222
matrix:
2323
include:
24+
- { os: ubuntu-latest, python: '3.13', arch: x64}
2425
- { os: ubuntu-latest, python: '3.12', arch: x64}
2526
- { os: ubuntu-latest, python: '3.11', arch: x64}
2627
- { os: ubuntu-latest, python: '3.10', arch: x64 }
2728
- { os: ubuntu-latest, python: '3.9', arch: x64 }
28-
- { os: ubuntu-latest, python: '3.8', arch: x64 }
2929

30+
- { os: macos-13, python: '3.13', arch: x64 }
3031
- { os: macos-13, python: '3.12', arch: x64 }
3132
- { os: macos-13, python: '3.11', arch: x64 }
3233
- { os: macos-13, python: '3.10', arch: x64 }
3334
- { os: macos-13, python: '3.9', arch: x64 }
34-
- { os: macos-13, python: '3.8', arch: x64 }
3535

36+
- { os: macos-latest, python: '3.13', arch: arm64}
3637
- { os: macos-latest, python: '3.12', arch: arm64}
3738
- { os: macos-latest, python: '3.11', arch: arm64}
3839
- { os: macos-latest, python: '3.10', arch: arm64}
3940
- { os: macos-latest, python: '3.9', arch: arm64}
4041

42+
- { os: windows-latest, python: '3.13', arch: x64 }
4143
- { os: windows-latest, python: '3.12', arch: x64 }
4244
- { os: windows-latest, python: '3.11', arch: x64 }
4345
- { os: windows-latest, python: '3.10', arch: x64 }
4446
- { os: windows-latest, python: '3.9', arch: x64 }
45-
- { os: windows-latest, python: '3.8', arch: x64 }
4647

4748
if: github.repository == 'QTC-UMD/rydiqule-vendored-conda-builds'
4849
steps:

pkgs.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ source = "pypi"
44
noarch = true
55
build_args = [] # --noarch will automatically be added if applicable
66
# The below will only be used if noarch is False
7-
pythons = ["3.8", "3.9", "3.10", "3.11", "3.12"]
7+
pythons = ["3.9", "3.10", "3.11", "3.12", "3.13"]
88
platforms = ["win-64", "osx-64", "osx-arm64", "linux"]
99

1010
### only available on PyPI

0 commit comments

Comments
 (0)