Skip to content
This repository was archived by the owner on Feb 20, 2026. It is now read-only.

Commit 17b47fd

Browse files
authored
Merge pull request #78 from gdubicki/fix_python_versions
Restore badge with Python 3.6, switch to 3.9 as main
2 parents 5e05256 + eaa467e commit 17b47fd

5 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/doc.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ jobs:
1414

1515
- uses: actions/checkout@v1
1616

17-
- name: Set up Python 3.7
17+
- name: Set up Python 3.9
1818
uses: actions/setup-python@v1
1919
with:
20-
python-version: 3.7
20+
python-version: 3.9
2121

2222
- name: Install and configure poetry
2323
run: |

.github/workflows/linters.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ jobs:
1515

1616
- uses: actions/checkout@v1
1717

18-
- name: Set up Python 3.7
18+
- name: Set up Python 3.9
1919
uses: actions/setup-python@v1
2020
with:
21-
python-version: 3.7
21+
python-version: 3.9
2222

2323
- name: Install and configure poetry
2424
run: |

.github/workflows/safety.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
strategy:
1010
fail-fast: false
1111
matrix:
12-
python-version: [3.7]
12+
python-version: [3.9]
1313
steps:
1414
- uses: actions/checkout@v1
1515

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
strategy:
1414
fail-fast: false
1515
matrix:
16-
python-version: [3.6, 3.7, 3.8]
16+
python-version: [3.6, 3.7, 3.8, 3.9]
1717
os: [ubuntu-latest, macos-latest, windows-latest]
1818

1919
steps:

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Issues = "https://github.com/dmerejkowsky/python-cli-ui/issues"
1717

1818
[tool.poetry.dependencies]
1919
# Keep this in sync with .github/workflows/
20-
python = "^3.6.2"
20+
python = "^3.6"
2121
colorama = "^0.4.1"
2222
tabulate = "^0.8.3"
2323
unidecode = "^1.0.23"

0 commit comments

Comments
 (0)