Skip to content

Commit 457fcd6

Browse files
committed
ci: add Anaconda 3.12 and 3.13
Let's complete the matrix. While we're here, fix the copy + upload of conda packages. Unsure when this broke.
1 parent 7147d2c commit 457fcd6

3 files changed

Lines changed: 7 additions & 1 deletion

File tree

.github/workflows/anaconda.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ jobs:
1212
- '3.9'
1313
- '3.10'
1414
- '3.11'
15+
- '3.12'
16+
- '3.13'
1517
runs-on: 'ubuntu-22.04'
1618
env:
1719
# Enable fuzzing tests, other expensive tests.
@@ -58,6 +60,8 @@ jobs:
5860
- '3.9'
5961
- '3.10'
6062
- '3.11'
63+
- '3.12'
64+
- '3.13'
6165
runs-on: 'windows-2022'
6266
env:
6367
# Enable fuzzing tests, other expensive tests.

ci/copy-conda-package.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
print("scanning %s for packages" % build_dir)
1313
for p in os.listdir(build_dir):
14-
if not p.endswith(".tar.bz2"):
14+
if not p.endswith(".conda"):
1515
continue
1616

1717
source = os.path.join(build_dir, p)

docs/news.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,8 @@ Changes
6767
* Added CI coverage for PyPy 3.11.
6868
* Anaconda Windows CI builds have been disabled because we're running into
6969
an apparant conda bug.
70+
* Added CI coverage for Anaconda 3.12 and 3.13 on Linux and Windows x86-64
71+
(but the Windows builds no-op due to above issue).
7072

7173
Backwards Compatibility Notes
7274
-----------------------------

0 commit comments

Comments
 (0)