Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump Required Python Version to 3.9-3.13 #247

Merged
merged 5 commits into from
Nov 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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