Skip to content

Commit

Permalink
Update minimum Python required to 3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
florianschanda committed Apr 27, 2023
1 parent e8ff940 commit bcf057e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
- name: Setup tools
uses: actions/setup-python@v1
with:
python-version: 3.6
python-version: 3.7
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down
2 changes: 1 addition & 1 deletion setup_agpl.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
license="GNU Affero General Public License v3",
packages=["miss_hit"],
install_requires=["miss_hit_core==%s" % miss_hit_core.version.VERSION],
python_requires=">=3.6, <4",
python_requires=">=3.7, <4",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
Expand Down
2 changes: 1 addition & 1 deletion setup_gpl.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
},
license="GNU General Public License v3",
packages=["miss_hit_core"],
python_requires=">=3.6, <4",
python_requires=">=3.7, <4",
package_data = {
"miss_hit_core": ["resources/*.css", "resources/assets/*"],
},
Expand Down

0 comments on commit bcf057e

Please sign in to comment.