Skip to content

Commit

Permalink
[ci] Set the expected Python version when building release files
Browse files Browse the repository at this point in the history
  • Loading branch information
BoboTiG committed Jan 1, 2023
1 parent 6687c99 commit 37cfcc1
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/build-and-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@ jobs:
ref: ${{ github.event.inputs.branch }}
- name: Install Python
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Install build dependencies
run: python -m pip install cibuildwheel
- name: Build wheels
Expand All @@ -64,6 +66,8 @@ jobs:
ref: ${{ github.event.inputs.branch }}
- name: Install Python
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Install build dependencies
run: python -m pip install -U setuptools wheel
- name: Build wheels
Expand All @@ -87,6 +91,8 @@ jobs:
ref: ${{ github.event.inputs.branch }}
- name: Install Python
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Build source distribution
run: python setup.py sdist
- name: Store the source distribution
Expand Down
1 change: 1 addition & 0 deletions changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ Changelog
202x-xx-xx • `full history <https://github.com/gorakhargosh/watchdog/compare/v2.2.0...HEAD>`__

- Enable ``mypy`` to discover type hints as specified in PEP 561 (`#933 <https://github.com/gorakhargosh/watchdog/pull/933>`__)
- [ci] Set the expected Python version when building release files
- [ci] Update actions versions in use
- [watchmedo] [regression] Fix usage of missing ``signal.SIGHUP`` attribute on non-Unix OSes (`#935 <https://github.com/gorakhargosh/watchdog/pull/935>`__)
- Thanks to our beloved contributors: @BoboTiG, @simon04, @piotrpdev
Expand Down

0 comments on commit 37cfcc1

Please sign in to comment.