Skip to content

Commit 05dbdb4

Browse files
authored
Merge pull request #962 from neo4j-contrib/prepare-archiving
Prepare project archival
2 parents 7f57cbe + 46a88b2 commit 05dbdb4

36 files changed

+2416
-121
lines changed

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Set up Python
1818
uses: actions/setup-python@v2
1919
with:
20-
python-version: '3.x'
20+
python-version: 3.9
2121
- name: Install dependencies
2222
run: |
2323
python -m pip install --upgrade pip
@@ -32,4 +32,4 @@ jobs:
3232
run: |
3333
RELEASE=${{ steps.get_version.outputs.VERSION }} python setup.py sdist bdist_wheel
3434
twine upload dist/*
35-
READTHEDOCS_TOKEN="${{ secrets.READTHEDOCS_TOKEN }}" bin/publish-docs ${{ steps.get_version.outputs.VERSION }}
35+
# READTHEDOCS_TOKEN="${{ secrets.READTHEDOCS_TOKEN }}" bin/publish-docs ${{ steps.get_version.outputs.VERSION }}

.github/workflows/test-neo34-py27.yml

Lines changed: 22 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@ on:
99
jobs:
1010
test:
1111

12-
runs-on: ubuntu-18.04
12+
runs-on: ubuntu-22.04
1313
strategy:
1414
matrix:
1515
python-version: ["2.7"]
1616

1717
steps:
1818
- uses: actions/checkout@v2
1919
- name: Set up Python
20-
uses: actions/setup-python@v2
20+
uses: MatteoH2O1999/setup-python@v2
2121
with:
2222
python-version: ${{ matrix.python-version }}
2323
- uses: actions/setup-java@v1
@@ -28,7 +28,6 @@ jobs:
2828
- name: Install dependencies
2929
run: |
3030
python -m pip install --upgrade pip wheel
31-
pip install https://github.com/bboe/coveralls-python/archive/github_actions.zip
3231
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
3332
3433
- name: Perform legal checks
@@ -42,8 +41,24 @@ jobs:
4241
env:
4342
NEO4J_VERSION: '3.4'
4443

44+
- name: Set up Python for coverage
45+
uses: actions/setup-python@v2
46+
with:
47+
python-version: 3.12
48+
- name: Create lcov coverage report
49+
run: |
50+
pip install coverage
51+
coverage lcov --rcfile="test/.coveragerc"
52+
- name: Set up Python for coverage
53+
uses: actions/setup-python@v2
54+
with:
55+
python-version: 3.12
56+
- name: Create lcov coverage report
57+
run: |
58+
pip install coverage
59+
coverage lcov --rcfile="test/.coveragerc"
4560
- name: Upload coverage
46-
run: coveralls
47-
env:
48-
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
49-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
61+
uses: coverallsapp/github-action@master
62+
with:
63+
github-token: ${{ secrets.GITHUB_TOKEN }}
64+
path-to-lcov: coverage.lcov

.github/workflows/test-neo34-py35+.yml

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ jobs:
2828
- name: Install dependencies
2929
run: |
3030
python -m pip install --upgrade pip wheel
31-
pip install https://github.com/bboe/coveralls-python/archive/github_actions.zip
3231
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
3332
3433
- name: Perform legal checks
@@ -42,8 +41,16 @@ jobs:
4241
env:
4342
NEO4J_VERSION: '3.4'
4443

44+
- name: Set up Python for coverage
45+
uses: actions/setup-python@v2
46+
with:
47+
python-version: 3.12
48+
- name: Create lcov coverage report
49+
run: |
50+
pip install coverage
51+
coverage lcov --rcfile="test/.coveragerc"
4552
- name: Upload coverage
46-
run: coveralls
47-
env:
48-
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
49-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
53+
uses: coverallsapp/github-action@master
54+
with:
55+
github-token: ${{ secrets.GITHUB_TOKEN }}
56+
path-to-lcov: coverage.lcov

.github/workflows/test-neo35-py27.yml

Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@ on:
99
jobs:
1010
test:
1111

12-
runs-on: ubuntu-18.04
12+
runs-on: ubuntu-22.04
1313
strategy:
1414
matrix:
1515
python-version: ["2.7"]
1616

1717
steps:
1818
- uses: actions/checkout@v2
1919
- name: Set up Python
20-
uses: actions/setup-python@v2
20+
uses: MatteoH2O1999/setup-python@v2
2121
with:
2222
python-version: ${{ matrix.python-version }}
2323
- uses: actions/setup-java@v1
@@ -28,7 +28,6 @@ jobs:
2828
- name: Install dependencies
2929
run: |
3030
python -m pip install --upgrade pip wheel
31-
pip install https://github.com/bboe/coveralls-python/archive/github_actions.zip
3231
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
3332
3433
- name: Perform legal checks
@@ -42,8 +41,16 @@ jobs:
4241
env:
4342
NEO4J_VERSION: '3.5'
4443

44+
- name: Set up Python for coverage
45+
uses: actions/setup-python@v2
46+
with:
47+
python-version: 3.12
48+
- name: Create lcov coverage report
49+
run: |
50+
pip install coverage
51+
coverage lcov --rcfile="test/.coveragerc"
4552
- name: Upload coverage
46-
run: coveralls
47-
env:
48-
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
49-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
53+
uses: coverallsapp/github-action@master
54+
with:
55+
github-token: ${{ secrets.GITHUB_TOKEN }}
56+
path-to-lcov: coverage.lcov

.github/workflows/test-neo35-py35+.yml

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ jobs:
2828
- name: Install dependencies
2929
run: |
3030
python -m pip install --upgrade pip wheel
31-
pip install https://github.com/bboe/coveralls-python/archive/github_actions.zip
3231
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
3332
3433
- name: Perform legal checks
@@ -42,8 +41,16 @@ jobs:
4241
env:
4342
NEO4J_VERSION: '3.5'
4443

44+
- name: Set up Python for coverage
45+
uses: actions/setup-python@v2
46+
with:
47+
python-version: 3.12
48+
- name: Create lcov coverage report
49+
run: |
50+
pip install coverage
51+
coverage lcov --rcfile="test/.coveragerc"
4552
- name: Upload coverage
46-
run: coveralls
47-
env:
48-
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
49-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
53+
uses: coverallsapp/github-action@master
54+
with:
55+
github-token: ${{ secrets.GITHUB_TOKEN }}
56+
path-to-lcov: coverage.lcov

.github/workflows/test-neo40-py27.yml

Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@ on:
99
jobs:
1010
test:
1111

12-
runs-on: ubuntu-18.04
12+
runs-on: ubuntu-22.04
1313
strategy:
1414
matrix:
1515
python-version: ["2.7"]
1616

1717
steps:
1818
- uses: actions/checkout@v2
1919
- name: Set up Python
20-
uses: actions/setup-python@v2
20+
uses: MatteoH2O1999/setup-python@v2
2121
with:
2222
python-version: ${{ matrix.python-version }}
2323
- uses: actions/setup-java@v1
@@ -28,7 +28,6 @@ jobs:
2828
- name: Install dependencies
2929
run: |
3030
python -m pip install --upgrade pip wheel
31-
pip install https://github.com/bboe/coveralls-python/archive/github_actions.zip
3231
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
3332
3433
- name: Perform legal checks
@@ -42,8 +41,16 @@ jobs:
4241
env:
4342
NEO4J_VERSION: '4.0'
4443

44+
- name: Set up Python for coverage
45+
uses: actions/setup-python@v2
46+
with:
47+
python-version: 3.12
48+
- name: Create lcov coverage report
49+
run: |
50+
pip install coverage
51+
coverage lcov --rcfile="test/.coveragerc"
4552
- name: Upload coverage
46-
run: coveralls
47-
env:
48-
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
49-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
53+
uses: coverallsapp/github-action@master
54+
with:
55+
github-token: ${{ secrets.GITHUB_TOKEN }}
56+
path-to-lcov: coverage.lcov

.github/workflows/test-neo40-py35+.yml

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ jobs:
2828
- name: Install dependencies
2929
run: |
3030
python -m pip install --upgrade pip wheel
31-
pip install https://github.com/bboe/coveralls-python/archive/github_actions.zip
3231
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
3332
3433
- name: Perform legal checks
@@ -42,8 +41,16 @@ jobs:
4241
env:
4342
NEO4J_VERSION: '4.0'
4443

44+
- name: Set up Python for coverage
45+
uses: actions/setup-python@v2
46+
with:
47+
python-version: 3.12
48+
- name: Create lcov coverage report
49+
run: |
50+
pip install coverage
51+
coverage lcov --rcfile="test/.coveragerc"
4552
- name: Upload coverage
46-
run: coveralls
47-
env:
48-
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
49-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
53+
uses: coverallsapp/github-action@master
54+
with:
55+
github-token: ${{ secrets.GITHUB_TOKEN }}
56+
path-to-lcov: coverage.lcov

.github/workflows/test-neo41-py27.yml

Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@ on:
99
jobs:
1010
test:
1111

12-
runs-on: ubuntu-18.04
12+
runs-on: ubuntu-22.04
1313
strategy:
1414
matrix:
1515
python-version: ["2.7"]
1616

1717
steps:
1818
- uses: actions/checkout@v2
1919
- name: Set up Python
20-
uses: actions/setup-python@v2
20+
uses: MatteoH2O1999/setup-python@v2
2121
with:
2222
python-version: ${{ matrix.python-version }}
2323
- uses: actions/setup-java@v1
@@ -28,7 +28,6 @@ jobs:
2828
- name: Install dependencies
2929
run: |
3030
python -m pip install --upgrade pip wheel
31-
pip install https://github.com/bboe/coveralls-python/archive/github_actions.zip
3231
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
3332
3433
- name: Perform legal checks
@@ -42,8 +41,16 @@ jobs:
4241
env:
4342
NEO4J_VERSION: '4.1'
4443

44+
- name: Set up Python for coverage
45+
uses: actions/setup-python@v2
46+
with:
47+
python-version: 3.12
48+
- name: Create lcov coverage report
49+
run: |
50+
pip install coverage
51+
coverage lcov --rcfile="test/.coveragerc"
4552
- name: Upload coverage
46-
run: coveralls
47-
env:
48-
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
49-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
53+
uses: coverallsapp/github-action@master
54+
with:
55+
github-token: ${{ secrets.GITHUB_TOKEN }}
56+
path-to-lcov: coverage.lcov

.github/workflows/test-neo41-py35+.yml

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ jobs:
2828
- name: Install dependencies
2929
run: |
3030
python -m pip install --upgrade pip wheel
31-
pip install https://github.com/bboe/coveralls-python/archive/github_actions.zip
3231
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
3332
3433
- name: Perform legal checks
@@ -42,8 +41,16 @@ jobs:
4241
env:
4342
NEO4J_VERSION: '4.1'
4443

44+
- name: Set up Python for coverage
45+
uses: actions/setup-python@v2
46+
with:
47+
python-version: 3.12
48+
- name: Create lcov coverage report
49+
run: |
50+
pip install coverage
51+
coverage lcov --rcfile="test/.coveragerc"
4552
- name: Upload coverage
46-
run: coveralls
47-
env:
48-
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
49-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
53+
uses: coverallsapp/github-action@master
54+
with:
55+
github-token: ${{ secrets.GITHUB_TOKEN }}
56+
path-to-lcov: coverage.lcov

.github/workflows/test-neo42-py27.yml

Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@ on:
99
jobs:
1010
test:
1111

12-
runs-on: ubuntu-18.04
12+
runs-on: ubuntu-22.04
1313
strategy:
1414
matrix:
1515
python-version: ["2.7"]
1616

1717
steps:
1818
- uses: actions/checkout@v2
1919
- name: Set up Python
20-
uses: actions/setup-python@v2
20+
uses: MatteoH2O1999/setup-python@v2
2121
with:
2222
python-version: ${{ matrix.python-version }}
2323
- uses: actions/setup-java@v1
@@ -28,7 +28,6 @@ jobs:
2828
- name: Install dependencies
2929
run: |
3030
python -m pip install --upgrade pip wheel
31-
pip install https://github.com/bboe/coveralls-python/archive/github_actions.zip
3231
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
3332
3433
- name: Perform legal checks
@@ -42,8 +41,16 @@ jobs:
4241
env:
4342
NEO4J_VERSION: '4.2'
4443

44+
- name: Set up Python for coverage
45+
uses: actions/setup-python@v2
46+
with:
47+
python-version: 3.12
48+
- name: Create lcov coverage report
49+
run: |
50+
pip install coverage
51+
coverage lcov --rcfile="test/.coveragerc"
4552
- name: Upload coverage
46-
run: coveralls
47-
env:
48-
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
49-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
53+
uses: coverallsapp/github-action@master
54+
with:
55+
github-token: ${{ secrets.GITHUB_TOKEN }}
56+
path-to-lcov: coverage.lcov

0 commit comments

Comments
 (0)