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

MNT: Python 3.11 should be supported #3038

Merged
merged 1 commit into from
Jun 14, 2023
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
2 changes: 1 addition & 1 deletion .github/workflows/pre-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
strategy:
matrix:
os: ['ubuntu-latest']
python-version: [3.9, '3.10']
python-version: [3.9, '3.10', '3.11']
Copy link
Contributor Author

Choose a reason for hiding this comment

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

Keep all versions of just a few, such as 3.9 and 3.11?

Copy link
Member

Choose a reason for hiding this comment

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

This works. Compared to the CircleCI jobs, these take no time, so I'm fine risking over-coverage.

install: ['pip']
check: ['tests']
pip-flags: ['PRE_PIP_FLAGS']
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/stable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
strategy:
matrix:
os: ['ubuntu-latest']
python-version: [3.8, 3.9, '3.10']
python-version: [3.8, 3.9, '3.10', '3.11']
install: ['pip']
check: ['tests']
pip-flags: ['']
Expand Down
1 change: 1 addition & 0 deletions .maint/CONTRIBUTORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ Before every release, unlisted contributors will be invited again to add their n
| Moodie | Craig A. | | 0000-0003-0867-1469 | Department of Psychology, Stanford University |
| Naveau | Mikaël | | 0000-0001-6948-9068 | Cyceron, UMS 3408 (CNRS - UCBN), France |
| Nitsch | Alexander | | 0000-0002-5740-9451 | Max Planck Institute for Human Cognitive and Brain Sciences, Leipzig, Germany |
| Papadopoulos | Dimitri | | 0000-0002-1242-8990 | Neurospin, CEA |
| Plunkett | Dillon | | 0000-0001-7822-6024 | Department of Psychology, Harvard University |
| Provins | Céline | | 0000-0002-1668-9629 | Department of Radiology, Lausanne University Hospital and University of Lausanne |
| Rivera-Dompenciel | Adriana | | 0000-0002-3339-4857 | Neuroscience Program, University of Iowa |
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ classifiers = [
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
license = {file = "LICENSE"}
requires-python = ">=3.8"
Expand Down