Skip to content

Commit

Permalink
Bump version to 3.5 (#35)
Browse files Browse the repository at this point in the history
* Bump version to 3.5
* Constraint deepdiff version due to upstream bug
* Documentation update
  • Loading branch information
sveinse authored Aug 28, 2024
1 parent 5946d93 commit 91a78ac
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ To install into a virtual environment `venv`. Check out this repo and go to
the top in a command-prompt (here assuming Windows and git bash):

$ py -3 -mvenv venv
$ venv/Scripts/python -mpip install --upgrade pip wheel setuptools
$ venv/Scripts/pip install .[ui] # [ui] will install GUI tools
$ venv/Scripts/python -mpip install --upgrade pip setuptools # Optional
$ venv/Scripts/pip install objdictgen[ui] # [ui] will install GUI tools

After this `venv/Scripts/odg.exe` (on Windows) will exist and can be called
from anywhere to run it.
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ python_requires = >=3.10, <4
install_requires =
jsonschema
colorama
deepdiff
deepdiff<8.0.0

[options.packages.find]
where = src
Expand Down
2 changes: 1 addition & 1 deletion src/objdictgen/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
from objdictgen.node import Node
from objdictgen.nodemanager import NodeManager

__version__ = "3.5a1"
__version__ = "3.5"

# Shortcuts
LoadFile = Node.LoadFile
Expand Down

0 comments on commit 91a78ac

Please sign in to comment.