Skip to content

Commit

Permalink
Merge pull request #8 from lcognat/feature-support-python-3.x
Browse files Browse the repository at this point in the history
Feature support python 3.x
  • Loading branch information
Souleymane-T committed Jan 29, 2020
2 parents f08ccf7 + 6db0d4d commit f22dd71
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/check-bandit.yml
Expand Up @@ -9,7 +9,7 @@ jobs:
strategy:
max-parallel: 2
matrix:
python-version: [3.6, 2.7]
python-version: [3.6, 3.7, 3.8, 2.7]

steps:
- uses: actions/checkout@v1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-black.yml
Expand Up @@ -9,7 +9,7 @@ jobs:
strategy:
max-parallel: 2
matrix:
python-version: [3.6]
python-version: [3.6, 3.7, 3.8]

steps:
- uses: actions/checkout@v1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-lint.yml
Expand Up @@ -9,7 +9,7 @@ jobs:
strategy:
max-parallel: 2
matrix:
python-version: [3.6, 2.7]
python-version: [3.6, 3.7, 3.8, 2.7]

steps:
- uses: actions/checkout@v1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-tests.yml
Expand Up @@ -9,7 +9,7 @@ jobs:
strategy:
max-parallel: 2
matrix:
python-version: [3.6, 2.7]
python-version: [3.6, 3.7, 3.8, 2.7]

steps:
- uses: actions/checkout@v1
Expand Down
2 changes: 2 additions & 0 deletions README.md
Expand Up @@ -10,6 +10,8 @@
![Code Style](https://img.shields.io/badge/code%20style-black-000000.svg)
![Python](https://img.shields.io/badge/python-2.7-3473A7?logo=python&logoColor=FED646)
![Python](https://img.shields.io/badge/python-3.6-3473A7?logo=python&logoColor=FED646)
![Python](https://img.shields.io/badge/python-3.7-3473A7?logo=python&logoColor=FED646)
![Python](https://img.shields.io/badge/python-3.8-3473A7?logo=python&logoColor=FED646)

## Description

Expand Down
2 changes: 2 additions & 0 deletions setup.cfg
Expand Up @@ -16,6 +16,8 @@ project_urls =
classifiers =
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8

[options]
packages = find:
Expand Down

0 comments on commit f22dd71

Please sign in to comment.