Skip to content
Draft
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
2 changes: 1 addition & 1 deletion .github/workflows/QA.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13"]
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

watchdog 6.0.0 doesn’t (yet) declare/support Python 3.14, and its sdist for macOS bundles a prebuilt *_cpython-310-darwin.so, so when building on 3.14 the wheel ends up with mismatched tags

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

steps:
- name: Checkout code
uses: actions/checkout@v4
Expand Down
6 changes: 6 additions & 0 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,11 @@
pkgs.clickhouse
pkgs.graphviz
python
pkgs.arrow-cpp
pkgs.zstd
pkgs.snappy
pkgs.lz4
pkgs.brotli
] ++ lib.optionals isLinux [
pkgs.gcc-unwrapped.lib
pkgs.glibc
Expand All @@ -69,6 +74,7 @@
"python3.11" = mkPythonShell pkgs.python311;
"python3.12" = mkPythonShell pkgs.python312;
"python3.13" = mkPythonShell pkgs.python313;
"python3.14" = mkPythonShell pkgs.python314;
});
};
}
Loading