Skip to content

Commit

Permalink
Merge pull request #104 from HansBug/dev/py
Browse files Browse the repository at this point in the history
dev(hansbug): add support for Python3.12 and PyPy3.10, drop support for Python3.7
  • Loading branch information
HansBug authored Jul 20, 2024
2 parents ce88a6c + a273a0e commit a6b8f5f
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/badge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ 3.7 ]
python-version: [ 3.8 ]
steps:
- name: Checkout code
uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/doc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ 3.7 ]
python-version: [ 3.8 ]

services:
plantuml:
Expand Down
2 changes: 1 addition & 1 deletion docs/source/tutorials/installation/index.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Installation
===================

``HBUtils`` is currently hosted on PyPI. It required python >= 3.7.
``HBUtils`` is currently hosted on PyPI. It required python >= 3.8.

You can simply install HBUtils from PyPI with the following command:

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def _load_req(file: str):
url='https://github.com/hansbug/hbutils',

# environment
python_requires=">=3.7",
python_requires=">=3.8",
install_requires=requirements,
tests_require=group_requirements['test'],
extras_require=group_requirements,
Expand All @@ -56,11 +56,11 @@ def _load_req(file: str):
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'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 :: PyPy'
],
)

0 comments on commit a6b8f5f

Please sign in to comment.