Skip to content

Commit

Permalink
Merge pull request #125 from hluk/image-python39
Browse files Browse the repository at this point in the history
Use Python 3.9 in container image, drop Python 3.6 support
  • Loading branch information
pbortlov authored Jun 21, 2022
2 parents a6ed010 + 678f123 commit 3436ce9
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ RUN microdnf update \
gcc \
git \
libyaml-devel \
python3-devel \
python3-pip \
python3-setuptools \
python39-devel \
python39-pip \
python39-setuptools \
&& microdnf clean all

# copy workdir for installation of review-rot
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ python setup.py develop
```

## [NEW] Tests
You can use `tox` or `detox` to run the tests against Python 3.6 and 3.7:
You can use `tox` or `detox` to run the tests against Python 3.7+:
```shell
sudo dnf install python-detox
detox
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = clean, py3{6,7,8,9,10}, flake8, black
envlist = clean, py3{7,8,9,10}, flake8, black
basepython = /usr/bin/python3
skip_missing_interpreters = true

Expand Down

0 comments on commit 3436ce9

Please sign in to comment.