Skip to content

Commit 4190a0f

Browse files
Merge pull request #672 from neo4j-contrib/fix_release_4_0_9_misconf
Corrected the misconfiguration of pyproject.toml ; fixed integration test
2 parents eb3f27b + c246283 commit 4190a0f

File tree

6 files changed

+9
-22
lines changed

6 files changed

+9
-22
lines changed

.github/workflows/integration-tests.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
22
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
33

4-
name: Python package
4+
name: Integration tests
55

66
on:
77
push:
@@ -28,6 +28,7 @@ jobs:
2828
run: |
2929
chmod +x ./scripts/docker-neo4j.sh
3030
sh ./scripts/docker-neo4j.sh ${{ matrix.neo4j-version }}
31+
sleep 30s
3132
- name: Install dependencies
3233
run: |
3334
python -m pip install --upgrade pip

.github/workflows/publish.yml

Lines changed: 0 additions & 17 deletions
This file was deleted.

Changelog

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
Version 4.4.0 2023-02-16
1+
Version 4.0.10 2023-02-16
2+
* Maintenance release due to misconfiguration of pyproject.toml
3+
4+
Version 4.0.9 2023-02-16
25
* Update neo4j driver to 4.4.10
36
* Confirmed support of all 4.x Neo4j versions (up to LTS version 4.4)
47
* Update shapely to 1.8.1 to support Python 3.9 and 3.10

neomodel/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,5 @@
2222
__email__ = '[email protected]'
2323
__license__ = 'MIT'
2424
__package__ = 'neomodel'
25-
__version__ = '4.0.9'
25+
__version__ = '4.0.10'
2626

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
55
[tool.setuptools_scm]
66

77
[tool.setuptools.packages.find]
8-
where = ["neomodel"]
8+
where = ["./"]
99

1010
[project]
1111
name = "neomodel"

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ neo4j-driver==4.4.10
22
pytz>=2021.1
33
neobolt==1.7.17
44
six==1.16.0
5-
neomodel==4.0.9
5+
neomodel==4.0.10
66

0 commit comments

Comments
 (0)