Skip to content
Merged
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
13 changes: 6 additions & 7 deletions .github/workflows/build-wheels-defined.yml
Original file line number Diff line number Diff line change
Expand Up @@ -291,10 +291,9 @@ jobs:
name: wheels-download-directory-linux-arm64-${{ matrix.python-version }}
path: ./downloaded_wheels

# TODO Uncomment this when we are ready to upload the wheels
# upload-python-wheels:
# if: ${{ always() }}
# needs: [get-supported-versions, ubuntu-latest, windows-latest, macos-latest, macos-m1, linux-armv7, linux-arm64]
# name: Upload Python wheels
# uses: espressif/idf-python-wheels/.github/workflows/upload-python-wheels.yml@main
# secrets: inherit
upload-python-wheels:
if: ${{ always() }}
needs: [get-supported-versions, ubuntu-latest, windows-latest, macos-latest, macos-m1, linux-armv7, linux-arm64]
name: Upload Python wheels
uses: espressif/idf-python-wheels/.github/workflows/upload-python-wheels.yml@main
secrets: inherit
24 changes: 0 additions & 24 deletions .github/workflows/create-release.yml

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/update-python-versions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install requests python-dateutil
python -m pip install requests python-dateutil colorama

- name: Generate supported versions
id: generate
Expand Down
4 changes: 4 additions & 0 deletions build_wheels.py
Original file line number Diff line number Diff line change
Expand Up @@ -284,6 +284,8 @@ def build_wheels(requirements: set, local_links: bool = True) -> dict:
f"{requirement}",
"--find-links",
f"{dir}",
"--find-links",
"https://pypi.org/simple/",
"--wheel-dir",
f"{dir}",
f"{argument}",
Expand All @@ -308,6 +310,8 @@ def build_wheels(requirements: set, local_links: bool = True) -> dict:
f"{requirement}",
"--find-links",
f"{dir}",
"--find-links",
"https://pypi.org/simple/",
"--wheel-dir",
f"{dir}",
],
Expand Down
2 changes: 1 addition & 1 deletion create_index_pages.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def _html_loader(path: str) -> str:
for name in packages_new.keys():
index.append(f' <a href="/pypi/{name}/">{name}/</a>')
index_pretty.append(
f' <div><a href="/pypi/{name}">{name}</a><span>Entries: {len(packages_new[name])}</span></div><br>'
f' <div><a href="/pypi/{name}">{name}</a><span>Entries: {len(packages_new[name]) - 1}</span></div><br>'
)
index.append(HTML_FOOTER)
index_pretty.append(HTML_FOOTER)
Expand Down
15 changes: 15 additions & 0 deletions exclude_list.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -74,3 +74,18 @@

# Esptool wheels many times are faulty. Mostly because it installs "esptool.py" which collides with the package name.
- package_name: 'esptool'

# pytest-embedded-xxx is not supported by some older Pythons
# https://pypi.org/project/pytest-embedded-idf/#history
- package_name: 'pytest-embedded-idf'
version: '>1.17.0'
python: ['==3.8', '==3.9']
- package_name: 'pytest-embedded-jtag'
version: '>1.17.0'
python: ['==3.8', '==3.9']
- package_name: 'pytest-embedded-qemu'
version: '>1.17.0'
python: ['==3.8', '==3.9']
- package_name: 'pytest-embedded-serial-esp'
version: '>1.17.0'
python: ['==3.8', '==3.9']