Skip to content

Commit f968273

Browse files
committed
Support Python 3.7 and 3.8
1 parent 4dc129b commit f968273

3 files changed

Lines changed: 12 additions & 1 deletion

File tree

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ Otherwise pip will refuse to install ``git-up`` due to ``Access denied`` errors.
6565
Python version compatibility:
6666
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
6767

68-
Python 2.7, 3.5 and 3.6 are supported :)
68+
Python 2.7, 3.5, 3.6, 3.7 and 3.8 are supported :)
6969

7070
Options and Configuration
7171
-------------------------

azure-pipelines.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,18 +20,27 @@ strategy:
2020
Python37:
2121
python.version: '3.7'
2222
imageName: 'ubuntu-16.04'
23+
Python38:
24+
python.version: '3.8'
25+
imageName: 'ubuntu-16.04'
2326
Mac_Python27:
2427
python.version: '2.7'
2528
imageName: 'macos-10.13'
2629
Mac_Python37:
2730
python.version: '3.7'
2831
imageName: 'macos-10.13'
32+
Mac_Python38:
33+
python.version: '3.8'
34+
imageName: 'macos-10.13'
2935
Windows_Python27:
3036
python.version: '2.7'
3137
imageName: 'vs2017-win2016'
3238
Windows_Python37:
3339
python.version: '3.7'
3440
imageName: 'vs2017-win2016'
41+
Windows_Python38:
42+
python.version: '3.8'
43+
imageName: 'vs2017-win2016'
3544

3645
pool:
3746
vmImage: $(imageName)

setup.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,8 @@
4646
"Programming Language :: Python :: 3",
4747
"Programming Language :: Python :: 3.5",
4848
"Programming Language :: Python :: 3.6",
49+
"Programming Language :: Python :: 3.7",
50+
"Programming Language :: Python :: 3.8",
4951
"Topic :: Software Development :: Version Control",
5052
"Topic :: Utilities"
5153
],

0 commit comments

Comments
 (0)