Skip to content

Commit b92f0a6

Browse files
committed
Test on python 3.12, 3.13, remove 3.7
1 parent 0840b13 commit b92f0a6

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

.github/workflows/pythonpackage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
strategy:
1919
matrix:
2020
python-version: [
21-
"3.7", "3.8", "3.9", "3.10", "3.11"
21+
"3.8", "3.9", "3.10", "3.11", "3.12", "3.13"
2222
]
2323
steps:
2424
- uses: actions/checkout@master

hdwallet/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
__version_info__ = ( 2, 2, 0 )
1+
__version_info__ = ( 2, 3, 0 )
22
__version__ = 'v' + '.'.join( map( str, __version_info__ ))

setup.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,6 @@
5555
classifiers=[
5656
"Development Status :: 5 - Production/Stable",
5757
"License :: OSI Approved :: ISC License (ISCL)",
58-
"Programming Language :: Python :: 3.7",
5958
"Programming Language :: Python :: 3.8",
6059
"Programming Language :: Python :: 3.9",
6160
"Programming Language :: Python :: 3.10",

0 commit comments

Comments
 (0)