Skip to content
Snippets Groups Projects
Commit 2412a464 authored by Florian Spreckelsen's avatar Florian Spreckelsen
Browse files

MAINT: Add support for Python 3.12 and experimental support for 3.13

parent 214982c7
No related branches found
No related tags found
2 merge requests!100WIP: Filling XLSX: Seems to be working.,!97MAINT: Add support for Python 3.12 and experimental support for 3.13
Pipeline #49839 passed with warnings
......@@ -156,6 +156,20 @@ unittest_py311:
image: python:3.11
script: *python_test_script
unittest_py312:
tags: [docker]
stage: unittest
image: python:3.12
script: *python_test_script
unittest_py313:
allow_failure: true
tags: [docker]
stage: unittest
image: python:3.13-rc
script: *python_test_script
# Build the sphinx documentation and make it ready for deployment by Gitlab Pages
# Special job for serving a static website. See https://docs.gitlab.com/ee/ci/yaml/README.html#pages
pages_prepare: &pages_prepare
......
......@@ -12,6 +12,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Json schema exporter:
- has new parameter `use_rt_pool`
- propagates more properties in the `make_array` function
- Support for Python 3.12 and experimental support for 3.13
### Changed ###
......
[tox]
envlist=py38, py39, py310, py311
envlist=py38, py39, py310, py311, py312, py313
skip_missing_interpreters = true
[testenv]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment