Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
mt940
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Tryton
mt940
Commits
3323e3e26d8a
Commit
3323e3e26d8a
authored
1 year ago
by
Cédric Krier
Browse files
Options
Downloads
Patches
Plain Diff
Add support to Python 3.10, 3.11, 3.12
parent
c9d49931dc9d
No related branches found
No related tags found
1 merge request
!5
Add support to Python 3.10, 3.11, 3.12
Pipeline
#72109
passed
1 year ago
Stage: check
Stage: test
Changes
4
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
.gitlab-ci.yml
+1
-1
1 addition, 1 deletion
.gitlab-ci.yml
CHANGELOG
+2
-0
2 additions, 0 deletions
CHANGELOG
setup.py
+3
-0
3 additions, 0 deletions
setup.py
tox.ini
+1
-1
1 addition, 1 deletion
tox.ini
with
7 additions
and
2 deletions
.gitlab-ci.yml
+
1
−
1
View file @
3323e3e2
...
...
@@ -57,7 +57,7 @@
-
tox -e "py${PYTHON_VERSION/./}" -vv -- -v --output-file junit.xml
parallel
:
matrix
:
-
PYTHON_VERSION
:
[
"
3.5"
,
"
3.6"
,
"
3.7"
,
"
3.8"
,
"
3.9"
]
-
PYTHON_VERSION
:
[
"
3.5"
,
"
3.6"
,
"
3.7"
,
"
3.8"
,
"
3.9"
,
"
3.10"
,
"
3.11"
,
"
3.12"
]
test-tox-pypy
:
extends
:
.test-tox
...
...
This diff is collapsed.
Click to expand it.
CHANGELOG
+
2
−
0
View file @
3323e3e2
* Add support to Python 3.10, 3.11, 3.12
Version 0.6.0 - 2021-09-18
* Remove support for Python older than 3.5
* Add support for Python 3.9
...
...
This diff is collapsed.
Click to expand it.
setup.py
+
3
−
0
View file @
3323e3e2
...
...
@@ -47,6 +47,9 @@
'
Programming Language :: Python :: 3.7
'
,
'
Programming Language :: Python :: 3.8
'
,
'
Programming Language :: Python :: 3.9
'
,
'
Programming Language :: Python :: 3.10
'
,
'
Programming Language :: Python :: 3.11
'
,
'
Programming Language :: Python :: 3.12
'
,
'
Topic :: Office/Business
'
,
'
Topic :: Software Development :: Libraries
'
,
'
Topic :: Utilities
'
,
...
...
This diff is collapsed.
Click to expand it.
tox.ini
+
1
−
1
View file @
3323e3e2
...
...
@@ -4,7 +4,7 @@
# and then run "tox" from this directory.
[tox]
envlist
=
py35, py36, py37, py38, py39, pypy3
envlist
=
py35, py36, py37, py38, py39,
py310, py311, py312,
pypy3
[testenv]
usedevelop
=
true
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment