Skip to content

Commit

Permalink
Bump Required Python Version to 3.9-3.13 (#247)
Browse files Browse the repository at this point in the history
  • Loading branch information
robsdedude authored Nov 14, 2024
1 parent e17603b commit 820dbba
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 11 deletions.
8 changes: 3 additions & 5 deletions .github/workflows/python-async-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand All @@ -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
Expand All @@ -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:
Expand Down
8 changes: 3 additions & 5 deletions .github/workflows/python-sync-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand All @@ -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
Expand All @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -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:

Expand Down

0 comments on commit 820dbba

Please sign in to comment.