Skip to content
Open
Show file tree
Hide file tree
Changes from 13 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
1 change: 1 addition & 0 deletions .github/workflows/freethreading_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ jobs:
version: "0.7.2"
python-version: 3.13t
enable-cache: false
activate-environment: true
- name: Disable Coverage
run: |
perl -i -ne 'print unless /--cov/' pyproject.toml
Expand Down
2 changes: 2 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ include LICENSE
include COPYING
include AUTHORS
recursive-include src *.py *.h *.c
include src/watchdog_fsevents.c
include src/pythoncapi_compat.h
Comment thread
HaoZeke marked this conversation as resolved.
Outdated
include src/watchdog/py.typed
include tox.ini
include docs/*.txt
Expand Down
2 changes: 2 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
sources=[
"src/watchdog_fsevents.c",
],
include_dirs=[SRC_DIR],

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

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

I am not sure this is needed.

libraries=["m"],
define_macros=[
("WATCHDOG_VERSION_STRING", '"' + version.VERSION_STRING + '"'),
Expand Down Expand Up @@ -121,6 +122,7 @@
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Programming Language :: Python :: Free Threading :: 2 - Beta",
"Programming Language :: C",
"Topic :: Software Development :: Libraries",
"Topic :: System :: Monitoring",
Expand Down
Loading
Loading