Skip to content

Commit

Permalink
Updates to 1.1.7
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthew Lemon committed Jan 31, 2024
1 parent 2db7d24 commit 31c9a63
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 3 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
# v1.1.7

* Updates dependencies
* Requires python version > 3.10
* Updated homepage and repository URL

# v1.1.6

* Void

# v1.1.5

* Fix bug resulting in datamap csv with multiple empty rows causing
Expand Down
1 change: 1 addition & 0 deletions engine/repository/datamap.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ class InMemorySingleDatamapRepository:
def __init__(self, datamap_path: Union[Path, str]) -> None:
self.datamap_path = datamap_path
self.headers = datamap_check(datamap_path)

if self.headers["type"] is not None:
self.is_typed = True
else:
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ requires = ["setuptools", "wheel"]

[project]
name = "bcompiler-engine"
version = "1.1.6"
version = "1.1.7"
authors = [
{name = "Matthew Lemon", email = "y@yulqen.org"},
]
Expand All @@ -22,8 +22,8 @@ dependencies = [
"wheel>=0.41.2"
]

[tool.setuptools]
packages = ["engine"]
[tool.setuptools.packages]
find = {} # Scan the project directory with the default parameters

[tool.poetry]
# poetry build will not work because this directory is not in project root
Expand Down

0 comments on commit 31c9a63

Please sign in to comment.