Skip to content

Commit

Permalink
Merge pull request #672 from neo4j-contrib/fix_release_4_0_9_misconf
Browse files Browse the repository at this point in the history
Corrected the misconfiguration of pyproject.toml ; fixed integration test
  • Loading branch information
mariusconjeaud authored Feb 17, 2023
2 parents eb3f27b + c246283 commit 4190a0f
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 22 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python

name: Python package
name: Integration tests

on:
push:
Expand All @@ -28,6 +28,7 @@ jobs:
run: |
chmod +x ./scripts/docker-neo4j.sh
sh ./scripts/docker-neo4j.sh ${{ matrix.neo4j-version }}
sleep 30s
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down
17 changes: 0 additions & 17 deletions .github/workflows/publish.yml

This file was deleted.

5 changes: 4 additions & 1 deletion Changelog
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
Version 4.4.0 2023-02-16
Version 4.0.10 2023-02-16
* Maintenance release due to misconfiguration of pyproject.toml

Version 4.0.9 2023-02-16
* Update neo4j driver to 4.4.10
* Confirmed support of all 4.x Neo4j versions (up to LTS version 4.4)
* Update shapely to 1.8.1 to support Python 3.9 and 3.10
Expand Down
2 changes: 1 addition & 1 deletion neomodel/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,5 @@
__email__ = '[email protected]'
__license__ = 'MIT'
__package__ = 'neomodel'
__version__ = '4.0.9'
__version__ = '4.0.10'

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
[tool.setuptools_scm]

[tool.setuptools.packages.find]
where = ["neomodel"]
where = ["./"]

[project]
name = "neomodel"
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ neo4j-driver==4.4.10
pytz>=2021.1
neobolt==1.7.17
six==1.16.0
neomodel==4.0.9
neomodel==4.0.10

0 comments on commit 4190a0f

Please sign in to comment.