8000 Support Python 3.7-3.9 · gitpython-developers/gitdb@0df4b09 · GitHub
[go: up one dir, main page]

Skip to content

Commit 0df4b09

Browse files
hugovkByron
authored andcommitted
Support Python 3.7-3.9
1 parent e4cd296 commit 0df4b09

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.github/workflows/pythonpackage.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@ jobs:
1515
runs-on: ubuntu-latest
1616
strategy:
1717
matrix:
18-
python-version: [3.5, 3.6, 3.7, 3.8]
18+
python-version: [3.5, 3.6, 3.7, 3.8, 3.9]
1919

2020
steps:
2121
- uses: actions/checkout@v2
2222
with:
2323
fetch-depth: 1000
2424
- name: Set up Python ${{ matrix.python-version }}
25-
uses: actions/setup-python@v1
25+
uses: actions/setup-python@v2
2626
with:
2727
python-version: ${{ matrix.python-version }}
2828
- name: Install dependencies

setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,8 @@
3838
"Programming Language :: Python :: 3.4",
3939
"Programming Language :: Python :: 3.5",
4040
"Programming Language :: Python :: 3.6",
41-
"Programming Language :: Python :: 3.7"
41+
"Programming Language :: Python :: 3.7",
42+
"Programming Language :: Python :: 3.8",
43+
"Programming Language :: Python :: 3.9",
4244
]
4345
)

0 commit comments

Comments
 (0)
0