Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

workflows, requirements: python 3.13 changes (bug 1914897) #1868

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
5 changes: 1 addition & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,7 @@ jobs:
- ubuntu-20.04
- ubuntu-22.04
- ubuntu-24.04
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
exclude:
- os: ubuntu-24.04
python-version: "3.8"
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- name: setup
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/compile-requirements.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/upload-artifact@v4
with:
name: ${{ github.sha }}-${{ github.run_number }}-${{ github.run_attempt }}-requirements
name: ${{ github.sha }}-${{ github.run_number }}-${{ github.run_attempt }}-requirements-${{ matrix.python-version }}-${{ runner.os }}
Copy link
Collaborator Author

Choose a reason for hiding this comment

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

upload-artifacts now requires unique names for each file

path: requirements/requirements-${{ matrix.python-version }}-${{ runner.os }}.txt
commit-and-push:
if: ${{ inputs.commit_and_push == 'true' }}
Expand All @@ -68,7 +68,7 @@ jobs:
persist-credentials: false
- uses: actions/download-artifact@v4
with:
name: ${{ github.sha }}-${{ github.run_number }}-${{ github.run_attempt }}-requirements
pattern: ${{ github.sha }}-${{ github.run_number }}-${{ github.run_attempt }}-requirements-*
path: temp-requirements
- name: Configure git
run: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/run-compile-requirements.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,21 +13,21 @@ jobs:
with:
requirements_files: '["base.in dev.in gui-dev.in gui.in linters.in"]'
os: '["ubuntu-latest"]'
python: '["3.8", "3.9", "3.10", "3.11", "3.12"]'
python: '["3.9", "3.10", "3.11", "3.12", "3.13"]'

call-compile-requirements-windows:
uses: ./.github/workflows/compile-requirements.yml
with:
requirements_files: '["base.in dev.in gui-dev.in gui.in linters.in"]'
os: '["windows-latest"]'
python: '["3.9", "3.10", "3.11", "3.12"]'
python: '["3.9", "3.10", "3.11", "3.12", "3.13"]'

call-compile-requirements-macos:
uses: ./.github/workflows/compile-requirements.yml
with:
requirements_files: '["base.in base.universal2.in dev.in gui-dev.in gui.in linters.in"]'
os: '["macos-latest"]'
python: '["3.9", "3.10", "3.11", "3.12"]'
python: '["3.9", "3.10", "3.11", "3.12", "3.13"]'

commit-and-push:
uses: ./.github/workflows/compile-requirements.yml
Expand Down
2 changes: 1 addition & 1 deletion requirements/base.in
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
--no-binary pyyaml
PyInstaller==6.*
PyInstaller==6.10.*
beautifulsoup4>=4.7.1
charset-normalizer<3
colorama>=0.4.1
Expand Down
10 changes: 5 additions & 5 deletions requirements/dev.in
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
--no-binary coverage
coverage==7.6.1
coveralls==4.0.1
mock==5.1.0
pytest==8.3.2
pytest-mock==3.14.0
coverage
coveralls
mock
pytest
pytest-mock
2 changes: 1 addition & 1 deletion requirements/gui-dev.in
Original file line number Diff line number Diff line change
@@ -1 +1 @@
pytest-qt==4.4.0
pytest-qt
2 changes: 1 addition & 1 deletion requirements/gui.in
Original file line number Diff line number Diff line change
@@ -1 +1 @@
PySide6==6.6.*
PySide6==6.8.*
2 changes: 1 addition & 1 deletion requirements/linters.in
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
--no-binary mypy-extensions
flake8>=6.0.0; python_version >= '3.8'
flake8>=6.0.0
flake8-black
glean-parser
isort
Expand Down
1,432 changes: 713 additions & 719 deletions requirements/requirements-3.10-Linux.txt

Large diffs are not rendered by default.

1,444 changes: 719 additions & 725 deletions requirements/requirements-3.10-Windows.txt

Large diffs are not rendered by default.

296 changes: 86 additions & 210 deletions requirements/requirements-3.10-macOS.txt

Large diffs are not rendered by default.

1,428 changes: 710 additions & 718 deletions requirements/requirements-3.11-Linux.txt

Large diffs are not rendered by default.

1,440 changes: 716 additions & 724 deletions requirements/requirements-3.11-Windows.txt

Large diffs are not rendered by default.

296 changes: 86 additions & 210 deletions requirements/requirements-3.11-macOS.txt

Large diffs are not rendered by default.

1,428 changes: 710 additions & 718 deletions requirements/requirements-3.12-Linux.txt

Large diffs are not rendered by default.

1,440 changes: 716 additions & 724 deletions requirements/requirements-3.12-Windows.txt

Large diffs are not rendered by default.

296 changes: 86 additions & 210 deletions requirements/requirements-3.12-macOS.txt

Large diffs are not rendered by default.

1,068 changes: 1,068 additions & 0 deletions requirements/requirements-3.13-Linux.txt

Large diffs are not rendered by default.

1,087 changes: 1,087 additions & 0 deletions requirements/requirements-3.13-Windows.txt

Large diffs are not rendered by default.

998 changes: 998 additions & 0 deletions requirements/requirements-3.13-macOS.txt

Large diffs are not rendered by default.

1,113 changes: 0 additions & 1,113 deletions requirements/requirements-3.8-Linux.txt

This file was deleted.

1,429 changes: 711 additions & 718 deletions requirements/requirements-3.9-Linux.txt

Large diffs are not rendered by default.

1,441 changes: 717 additions & 724 deletions requirements/requirements-3.9-Windows.txt

Large diffs are not rendered by default.

296 changes: 86 additions & 210 deletions requirements/requirements-3.9-macOS.txt

Large diffs are not rendered by default.

Loading