diff --git a/.github/workflows/python-async-app.yml b/.github/workflows/python-async-app.yml index b085554..7a1a18d 100644 --- a/.github/workflows/python-async-app.yml +++ b/.github/workflows/python-async-app.yml @@ -43,8 +43,8 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node-version: [ 20.x ] neo4j-version: [ "4.4", "4.4-enterprise", "5", "5-enterprise" ] + python-version: [ "3.9", "3.13" ] services: neo4j: image: neo4j:${{ matrix.neo4j-version }} @@ -64,7 +64,7 @@ jobs: - name: Set up Python 3.x uses: actions/setup-python@v5 with: - python-version: '3.x' + python-version: ${{ matrix.python-version }} - name: Upgrade pip run: | python -m pip install --upgrade pip @@ -75,9 +75,7 @@ jobs: - name: Check out project sources uses: actions/checkout@v4 - name: Install dependencies - run: | - python -m pip install --upgrade pip - pip install -r requirements-async.txt + run: pip install --upgrade -v -r requirements-async.txt - name: Check out test harness sources uses: actions/checkout@v4 with: diff --git a/.github/workflows/python-sync-app.yml b/.github/workflows/python-sync-app.yml index 39f8312..687427c 100644 --- a/.github/workflows/python-sync-app.yml +++ b/.github/workflows/python-sync-app.yml @@ -43,8 +43,8 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node-version: [ 20.x ] neo4j-version: [ "4.4", "4.4-enterprise", "5", "5-enterprise" ] + python-version: [ "3.9", "3.13" ] services: neo4j: image: neo4j:${{ matrix.neo4j-version }} @@ -64,7 +64,7 @@ jobs: - name: Set up Python 3.x uses: actions/setup-python@v5 with: - python-version: '3.x' + python-version: ${{ matrix.python-version }} - name: Upgrade pip run: | python -m pip install --upgrade pip @@ -75,9 +75,7 @@ jobs: - name: Check out project sources uses: actions/checkout@v4 - name: Install dependencies - run: | - python -m pip install --upgrade pip - pip install -r requirements-sync.txt + run: pip install --upgrade -v -r requirements-sync.txt - name: Check out test harness sources uses: actions/checkout@v4 with: diff --git a/README.adoc b/README.adoc index acb480e..bc14104 100644 --- a/README.adoc +++ b/README.adoc @@ -27,7 +27,7 @@ Provision a database quickly with https://sandbox.neo4j.com/?usecase=movies[Neo4 === Setup -Install Python 3.7-3.12. +Install Python 3.9-3.13. Then get yourself set up with link:http://docs.python-guide.org/en/latest/dev/virtualenvs/[virtualenv] so we don't break any other Python stuff you have on your machine. After you've got that installed let's set up an environment for our app: