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

feat(framework) Add Python 3.12 to framework tests #2833

Open
wants to merge 30 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
b132138
Add Python 3.12 to framework tests
danieljanes Jan 21, 2024
92815cc
Merge branch 'main' into py312
danieljanes Feb 9, 2024
9ca128d
Update poetry
charlesbvll Feb 9, 2024
872386c
Update poetry in bootstrap
charlesbvll Feb 9, 2024
43685d1
Use correct version
charlesbvll Feb 9, 2024
a6640e8
Add distutils requirement
charlesbvll Feb 9, 2024
31ad49e
Test with setup tools
charlesbvll Feb 9, 2024
6503818
Update setuptools
charlesbvll Feb 9, 2024
388803c
Remove setuptools from pyproject
charlesbvll Feb 9, 2024
ad77a8d
Update pip version
charlesbvll Feb 9, 2024
2567307
Merge branch 'main' into py312
charlesbvll Feb 9, 2024
c65d600
Merge branch 'main' into py312
charlesbvll May 3, 2024
c684fe7
Merge branch 'main' into py312
danieljanes May 4, 2024
a10fbc9
Merge branch 'main' into py312
charlesbvll May 6, 2024
04eb7b4
Update numpy
charlesbvll May 6, 2024
6985d26
Merge branch 'main' into py312
danieljanes Jun 11, 2024
e62a73c
Update pyproject.toml
danieljanes Jul 21, 2024
d58a011
Update CI
danieljanes Jul 21, 2024
805d920
Merge branch 'main' into py312
danieljanes Jul 21, 2024
47134cb
Fix comments in workflows
danieljanes Jul 21, 2024
d464801
Merge branch 'py312' of github.com:adap/flower into py312
danieljanes Jul 21, 2024
4d1a069
Merge branch 'main' into py312
danieljanes Sep 13, 2024
661d843
Update datasets.yml
danieljanes Sep 13, 2024
4c249eb
Update pyproject.toml
danieljanes Sep 13, 2024
f59e480
Merge branch 'main' into py312
danieljanes Nov 16, 2024
cfb23e0
Update datasets.yml
danieljanes Nov 16, 2024
115cda5
Merge branch 'main' into py312
danieljanes Jan 18, 2025
2126db0
Merge branch 'main' into py312
danieljanes Jan 18, 2025
75defee
Merge branch 'main' into py312
danieljanes Jan 24, 2025
68edcf8
Merge branch 'main' into py312
jafermarq Jan 28, 2025
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
4 changes: 1 addition & 3 deletions .github/workflows/datasets.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,7 @@ jobs:
# Latest version which comes cached in the host image can be found here:
# https://github.com/actions/runner-images/blob/main/images/linux/Ubuntu2204-Readme.md#python
# In case of a mismatch, the job has to download Python to install it.
# Note: Due to a bug in actions/setup-python, we have to put "3.10" in
# quotes as it will otherwise assume "3.1"
python: ['3.9', '3.10', '3.11']
python: ['3.9', '3.10', '3.11', '3.12']

name: Python ${{ matrix.python }}

Expand Down
4 changes: 1 addition & 3 deletions .github/workflows/framework.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,7 @@ jobs:
# Latest version which comes cached in the host image can be found here:
# https://github.com/actions/runner-images/blob/main/images/linux/Ubuntu2204-Readme.md#python
# In case of a mismatch, the job has to download Python to install it.
# Note: Due to a bug in actions/setup-python, we have to put "3.10" in
# quotes as it will otherwise assume "3.1"
python: ['3.9', '3.10', '3.11']
python: ['3.9', '3.10', '3.11', '3.12']

name: Python ${{ matrix.python }}

Expand Down
Loading