Skip to content

Commit

Permalink
fix json path in __init__.py and bump to version 3.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
AStcherbinine committed Apr 17, 2024
1 parent ad0e288 commit f9ddb7d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion omegapy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

import json

with open('package.json', 'r') as f:
with open('../package.json', 'r') as f:
data_json = json.load(f)

__version__ = data_json['version']
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "omegapy",
"version": "3.0.1",
"version": "3.0.2",
"pythonVersionMin": "3.7"
}

0 comments on commit f9ddb7d

Please sign in to comment.