Skip to content

Commit

Permalink
Update Python SDK version and project configurations
Browse files Browse the repository at this point in the history
The code has been updated to align with the Python 3.12 SDK. The versions supported in setup.py, and the tox.ini file have been modified to latest Python versions. The project version in kecpkg/__init__.py has also been updated, and git toolbox configurations are added for better commit message formatting.
  • Loading branch information
Jochem Berends committed Jun 21, 2024
1 parent f4dbded commit 908c037
Show file tree
Hide file tree
Showing 7 changed files with 30 additions and 31 deletions.
15 changes: 15 additions & 0 deletions .idea/git_toolbox_prj.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .idea/kecpkg-tools.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

19 changes: 0 additions & 19 deletions .travis.yml-OFF

This file was deleted.

2 changes: 1 addition & 1 deletion kecpkg/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.0.4"
__version__ = "1.1.0"
8 changes: 5 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,12 @@
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"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",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
),
Expand Down
13 changes: 7 additions & 6 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
[tox]
envlist =
py27,
py35,
py36,
py37,
pypy,
py38,
py39,
py310,
py311,
py312,
pypy3,
dist_and_docs

[travis]
python =
3.6: py36, dist_and_docs
3.12: py312, dist_and_docs

[testenv]
passenv = *
Expand All @@ -31,7 +32,7 @@ commands =

[testenv:dist_and_docs]
passenv = *
basepython = python3.6
basepython = python3.12
deps =
check-manifest
readme_renderer
Expand Down

0 comments on commit 908c037

Please sign in to comment.