Skip to content

Commit

Permalink
Release v4.10.4
Browse files Browse the repository at this point in the history
  • Loading branch information
frthjf committed Nov 26, 2024
1 parent 7113849 commit e4207b7
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 17 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@

No current changes

# v4.10.4

- Respect .gitignore in code rsync
- Prevents false positive config method matches
- Adds CWD to PATH when using CLI
- Load from directory in dispatch code

# v4.10.3

- Option to hide interfaces from get
Expand Down
27 changes: 10 additions & 17 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,24 +1,20 @@
[tool.poetry]
name = "machinable"
version = "4.10.3"
version = "4.10.4"
description = "A modular configuration system for research projects"
license = "MIT"
authors = [
"Frithjof Gressmann <[email protected]>"
]
maintainers = [
"Frithjof Gressmann <[email protected]>"
]
authors = ["Frithjof Gressmann <[email protected]>"]
maintainers = ["Frithjof Gressmann <[email protected]>"]
readme = "README.md"
homepage = "https://machinable.org"
repository = "https://github.com/machinable-org/machinable"
documentation = "https://machinable.org"
keywords = ["machine-learning", "research"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Science/Research"
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Science/Research",
]
include = ["CHANGELOG.md", "src/machinable/py.typed"]

Expand All @@ -28,10 +24,10 @@ flatten-dict = "^0.4"
jsonlines = ">=3.1,<5.0"
pydantic = ">=1,<3"
arrow = "^1.2"
importlib-metadata = {version = "^6.7", python = "<3.8"}
importlib-metadata = { version = "^6.7", python = "<3.8" }
omegaconf = "^2.3.0"
dill = "^0.3.7"
typing-extensions = {version = "^4.7.0", python = "<3.11"}
typing-extensions = { version = "^4.7.0", python = "<3.11" }
uuid7 = "^0.1.0"


Expand All @@ -45,10 +41,7 @@ editorconfig-checker = "^2.7.3"
pytest-cov = "^4.1.0"

[tool.poetry.extras]
all = [
"numpy",
"pandas",
]
all = ["numpy", "pandas"]

[build-system]
requires = ["poetry_core>=1.0.0"]
Expand Down

0 comments on commit e4207b7

Please sign in to comment.