Skip to content

Commit

Permalink
Test on python 3.12, 3.13, remove 3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
pjkundert committed Nov 5, 2024
1 parent 0840b13 commit b92f0a6
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pythonpackage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
strategy:
matrix:
python-version: [
"3.7", "3.8", "3.9", "3.10", "3.11"
"3.8", "3.9", "3.10", "3.11", "3.12", "3.13"
]
steps:
- uses: actions/checkout@master
Expand Down
2 changes: 1 addition & 1 deletion hdwallet/version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version_info__ = ( 2, 2, 0 )
__version_info__ = ( 2, 3, 0 )
__version__ = 'v' + '.'.join( map( str, __version_info__ ))
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@
classifiers=[
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: ISC License (ISCL)",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
Expand Down

0 comments on commit b92f0a6

Please sign in to comment.