Skip to content

Commit

Permalink
Update to Python 3.7 minimum
Browse files Browse the repository at this point in the history
Signed-off-by: Carmen Bianca Bakker <[email protected]>
  • Loading branch information
carmenbianca committed Oct 6, 2022
1 parent fbaea36 commit 416934d
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 11 deletions.
13 changes: 5 additions & 8 deletions .github/workflows/pythonpackage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,8 @@ jobs:
strategy:
max-parallel: 10
matrix:
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"]
python-version: ["3.7", "3.8", "3.9", "3.10"]
os: [ubuntu-latest, macos-latest, windows-latest]
exclude:
- os: macos-latest
python-version: "3.6"

steps:
- uses: actions/checkout@v2
Expand All @@ -43,7 +40,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.6
python-version: 3.7
- name: Install dependencies
run: |
pip install poetry
Expand All @@ -59,7 +56,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.6
python-version: 3.7
- name: Install dependencies
run: |
pip install poetry
Expand All @@ -76,7 +73,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.6
python-version: 3.7
- name: Install dependencies
run: |
pip install poetry
Expand All @@ -92,7 +89,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.6
python-version: 3.7
- name: Install dependencies
run: |
pip install poetry
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ SPDX-License-Identifier: CC-BY-SA-4.0
- Source code: <https://github.com/fsfe/reuse-tool>
- PyPI: <https://pypi.python.org/pypi/reuse>
- REUSE: 3.0
- Python: 3.6+
- Python: 3.7+

## Background

Expand Down Expand Up @@ -110,7 +110,7 @@ reuse will then be available in `~/.local/bin`, which must be added to your
To install reuse, you need to have the following pieces of software on your
computer:

- Python 3.6+
- Python 3.7+
- pip

You then only need to run the following command:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ classifiers = [
]

[tool.poetry.dependencies]
python = "^3.6.2"
python = "^3.7"
Jinja2 = "^3.0.3"
binaryornot = "^0.4.4"
"boolean.py" = ">=3.8"
Expand Down

0 comments on commit 416934d

Please sign in to comment.