Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork7.9k
Bump minimum Python to 3.10#28503
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
Changes fromall commits
File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading.Please reload this page.
Jump to
Uh oh!
There was an error while loading.Please reload this page.
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -49,10 +49,12 @@ jobs: | ||
test-cygwin: | ||
runs-on: windows-latest | ||
name: Python 3.${{ matrix.python-minor-version }} on Cygwin | ||
# Enable these when Cygwin has Python 3.12. | ||
if: >- | ||
github.event_name == 'workflow_dispatch' || | ||
(false &&github.event_name == 'schedule') || | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others.Learn more. Did you mean to keep the There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others.Learn more. answer: yes, cygwin is skipping 3.10 and 3.11, but is not ready for 3.12, so will be re-enabled later | ||
( | ||
false && | ||
github.repository == 'matplotlib/matplotlib' && | ||
!contains(github.event.head_commit.message, '[ci skip]') && | ||
!contains(github.event.head_commit.message, '[skip ci]') && | ||
@@ -72,7 +74,7 @@ jobs: | ||
) | ||
strategy: | ||
matrix: | ||
python-minor-version: [12] | ||
steps: | ||
- name: Fix line endings | ||
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
Increase to minimum supported versions of dependencies | ||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
For Matplotlib 3.10, the :ref:`minimum supported versions <dependencies>` are | ||
being bumped: | ||
+------------+-----------------+----------------+ | ||
| Dependency | min in mpl3.9 | min in mpl3.10 | | ||
+============+=================+================+ | ||
| Python | 3.9 | 3.10 | | ||
+------------+-----------------+----------------+ | ||
This is consistent with our :ref:`min_deps_policy` and `SPEC0 | ||
<https://scientific-python.org/specs/spec-0000/>`__ |
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.