Skip to content

Commit 78a4aaf

Browse files
Add support for Python 3.9 (#603)
1 parent 6f08752 commit 78a4aaf

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/python.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
strategy:
1414
matrix:
15-
python-version: [3.5, 3.6, 3.7, 3.8]
15+
python-version: [3.5, 3.6, 3.7, 3.8, 3.9]
1616

1717
steps:
1818
- uses: actions/checkout@v2

release-pypi-linux.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ bash ${MINICONDA_FILENAME} -b -f -p $HOME/miniconda3
2525
export PATH=$HOME/miniconda3/bin:$PATH
2626
eval "$(conda shell.bash hook)"
2727

28-
for VERSION in 2.7 3.5 3.6 3.7 3.8; do
28+
for VERSION in 2.7 3.5 3.6 3.7 3.8 3.9; do
2929
# Create and activate environment
3030
conda create -y -n py$VERSION python=$VERSION
3131
conda activate py$VERSION

release-pypi-macos.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ bash ${MINICONDA_FILENAME} -b -f -p $HOME/miniconda3
1212
export PATH=$HOME/miniconda3/bin:$PATH
1313
eval "$(conda shell.bash hook)"
1414

15-
for VERSION in 2.7 3.5 3.6 3.7 3.8; do
15+
for VERSION in 2.7 3.5 3.6 3.7 3.8 3.9; do
1616
# Create and activate environment
1717
conda create -y -n py$VERSION python=$VERSION
1818
conda activate py$VERSION

release-pypi-windows.cmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
@echo off
22
setlocal EnableDelayedExpansion
33

4-
SET VERSIONS=2.7 3.5 3.6 3.7 3.8
4+
SET VERSIONS=2.7 3.5 3.6 3.7 3.8 3.9
55
SET SOURCEDIR=%cd%
66

77
REM Build packages

0 commit comments

Comments
 (0)