Skip to content

Commit

Permalink
Require Python >= 3.7 instead of >= 3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
knokko committed Dec 2, 2024
1 parent 982887f commit b3d9af7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.9
- name: Set up Python 3.7
uses: actions/setup-python@v3
with:
python-version: "3.9"
python-version: "3.7"
- run: python -m unittest tests/**.py
5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,6 @@ build-backend = "hatchling.build"

[project]
name = 'helpor'
version = '0.1.2'
requires-python = '>= 3.9'
version = '0.1.3'
requires-python = '>= 3.7'

0 comments on commit b3d9af7

Please sign in to comment.