Skip to content

Commit

Permalink
Merge pull request #51 from jnidzwetzki/python_3_6
Browse files Browse the repository at this point in the history
Added support for Python 3.6
  • Loading branch information
jnidzwetzki committed Mar 16, 2023
2 parents 18b3d44 + 47df98c commit cc70be8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/integration_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,12 @@ jobs:
fail-fast: false
matrix:
psql_version: ['12.13', '13.9', '14.4', '15.1']
python_version: ['3.8', '3.9', '3.10']
python_version: ['3.6', '3.8', '3.9', '3.10']

# Python 3.6 is not available on ubuntu-22.04
# see: https://raw.githubusercontent.com/actions/python-versions/main/versions-manifest.json
name: PostgreSQL ${{ matrix.psql_version }} and Python ${{ matrix.python_version }} integration test
runs-on: ubuntu-latest
runs-on: ubuntu-20.04

steps:
- name: Checkout source code
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ classifiers =
package_dir =
= src
packages = find:
python_requires = >= 3.8
python_requires = >= 3.6

install_requires =
graphviz
Expand Down

0 comments on commit cc70be8

Please sign in to comment.