Skip to content
Snippets Groups Projects
Commit e673e5e3 authored by Holger's avatar Holger
Browse files

Add py 3.9 to CI

parent 3e76dcf9
No related branches found
No related tags found
2 merge requests!5Taken current version of master branch in the https://github.com/holgern/beem,!4Original changes pushed to master at https://github.com/holgern/beem
......@@ -78,6 +78,28 @@ jobs:
command: |
tox -e py38
build-python3.9:
docker:
- image: circleci/python:3.9
working_directory: ~/repo
steps:
- checkout
# Download and cache dependencies
- restore_cache:
keys:
- v1-dependencies-{{ checksum "requirements-test.txt" }}
# fallback to using the latest cache if no exact match is found
- v1-dependencies-
- run:
name: install dependencies
command: |
sudo python -m pip install --upgrade -r requirements-test.txt
- run:
name: run tests
command: |
tox -e py39
build-python3.7:
docker:
- image: circleci/python:3.7
......
......@@ -29,6 +29,10 @@ matrix:
python: 3.8
env:
- TOXENV=short
- os: linux
python: 3.9
env:
- TOXENV=short
- os: linux
python: 3.6
env:
......
"""THIS FILE IS GENERATED FROM beem SETUP.PY."""
version = '0.24.10'
version = '0.24.11'
"""THIS FILE IS GENERATED FROM beem SETUP.PY."""
version = '0.24.10'
version = '0.24.11'
"""THIS FILE IS GENERATED FROM beem SETUP.PY."""
version = '0.24.10'
version = '0.24.11'
"""THIS FILE IS GENERATED FROM beem SETUP.PY."""
version = '0.24.10'
version = '0.24.11'
......@@ -16,7 +16,7 @@ except LookupError:
ascii = codecs.lookup('ascii')
codecs.register(lambda name, enc=ascii: {True: enc}.get(name == 'mbcs'))
VERSION = '0.24.10'
VERSION = '0.24.11'
tests_require = ['mock >= 2.0.0', 'pytest', 'pytest-mock', 'parameterized']
......
[tox]
envlist = py{27,35,36,37,38}
envlist = py{27,35,36,37,38,39}
skip_missing_interpreters = true
[testenv]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment