Skip to content

Commit 0037394

Browse files
committed
update CI to python 3.9
1 parent 043c179 commit 0037394

File tree

9 files changed

+13
-13
lines changed

9 files changed

+13
-13
lines changed

.circleci/config.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: 2
22
jobs:
33
build:
44
docker:
5-
- image: circleci/python:3.7.4
5+
- image: circleci/python:3.9.1
66

77
working_directory: ~/repo
88

.travis.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
dist: bionic
1+
dist: focal
22
sudo: true
33
language: python
44
python:
5-
- "3.7"
5+
- "3.9"
66
install:
77
- pip install -r requirements.txt
88
- pip install -r requirements-dev.txt

LICENSE.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2019-2020, Xavier Dupré
1+
Copyright (c) 2019-2021, Xavier Dupré
22

33
Permission is hereby granted, free of charge, to any person obtaining a copy
44
of this software and associated documentation files (the "Software"), to deal

appveyor.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ image:
22
- Visual Studio 2019
33
environment:
44
matrix:
5-
- PYTHON: "C:\\Python38-x64"
6-
PYTHON_VERSION: "3.8.x"
5+
- PYTHON: "C:\\Python39-x64"
6+
PYTHON_VERSION: "3.9.x"
77
PYTHON_ARCH: "64"
88
init:
99
- "ECHO %PYTHON% %PYTHON_VERSION% %PYTHON_ARCH%"

azure-pipelines.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ jobs:
44
vmImage: 'ubuntu-latest'
55
strategy:
66
matrix:
7-
Python37-Linux:
8-
python.version: '3.7'
7+
Python39-Linux:
8+
python.version: '3.9'
99
maxParallel: 3
1010

1111
steps:
@@ -53,7 +53,7 @@ jobs:
5353
strategy:
5454
matrix:
5555
Python37-Mac:
56-
python.version: '3.7'
56+
python.version: '3.9'
5757
maxParallel: 3
5858

5959
steps:

bin/build.bat

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ cd %root%
55
@echo ##################
66
@echo Compile
77
@echo ##################
8-
set pythonexe="c:\Python372_x64\python.exe"
8+
set pythonexe="c:\Python391_x64\python.exe"
99
if not exist %pythonexe% set pythonexe="c:\Python370_x64\python.exe"
1010

1111
@echo running %root%\setup.py build_ext --inplace

bin/doc.bat

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
set current=%~dp0
33
set root=%current%..
44
cd %root%
5-
set pythonexe="c:\Python372_x64\python.exe"
5+
set pythonexe="c:\Python391_x64\python.exe"
66
if not exist %pythonexe% set pythonexe="c:\Python370_x64\python.exe"
77

88
@echo running 'python -m sphinx -T -b html doc dist/html'

bin/flake8.bat

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
set current=%~dp0
33
set root=%current%..
44
cd %root%
5-
set pythonexe="c:\Python372_x64\python.exe"
5+
set pythonexe="c:\Python391_x64\python.exe"
66
if not exist %pythonexe% set pythonexe="c:\Python370_x64\python.exe"
77

88
@echo running 'python -m flake8 td3a_cpp tests examples'

bin/unittest.bat

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
set current=%~dp0
33
set root=%current%..
44
cd %root%
5-
set pythonexe="c:\Python372_x64\python.exe"
5+
set pythonexe="c:\Python391_x64\python.exe"
66
if not exist %pythonexe% set pythonexe="c:\Python370_x64\python.exe"
77

88
@echo running 'python -m unittest discover tests'

0 commit comments

Comments
 (0)