Skip to content

Commit

Permalink
Upgrade supported python versions
Browse files Browse the repository at this point in the history
  • Loading branch information
Bassem Girgis committed Sep 11, 2024
1 parent df1d898 commit e35cb7f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
matrix:
os: [windows-2019, windows-2022]
python-version: ["3.5", "3.6", "3.7", "3.8", "3.9", "3.10"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
runs-on: ${{ matrix.os }}
timeout-minutes: 30

Expand Down
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
],
"[python]": {
"editor.codeActionsOnSave": {
"source.organizeImports": true
"source.organizeImports": "explicit"
}
},
"python.linting.enabled": true,
Expand Down
7 changes: 3 additions & 4 deletions pyreadline3/release.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

branch = ''

version = '3.4.1'
version = '3.4.2'

description = "A python implementation of GNU readline."

Expand Down Expand Up @@ -93,10 +93,9 @@

'License :: OSI Approved :: BSD License',

'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',
]

0 comments on commit e35cb7f

Please sign in to comment.