Skip to content

Commit 134a005

Browse files
Merge pull request #57 from AlexanderWillner/main
Working with different python versions
2 parents ab9521c + d18880e commit 134a005

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.github/workflows/tests.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ env:
77
jobs:
88
test:
99
runs-on: ubuntu-latest
10+
strategy:
11+
matrix:
12+
python-version: [3.5, 3.6, 3.7, 3.8, 3.9]
1013

1114
steps:
1215
- uses: actions/checkout@v1

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ PIPENV=pipenv
99
PDOC=pdoc
1010

1111
DATE:=$(shell date +"%Y-%M-%d")
12-
VERSION=$(shell python3 -c 'import things; print(things.__version__)')
12+
VERSION=$(shell $(PYTHON) -c 'import things; print(things.__version__)')
1313

1414
help: ## Print help for each target
1515
$(info Things low-level Python API.)

0 commit comments

Comments
 (0)