Skip to content

Commit 2ffe67f

Browse files
authored
Merge pull request #19 from KnowledgeCaptureAndDiscovery/dev
merge with dev
2 parents d34c0b4 + 923fb7a commit 2ffe67f

File tree

3 files changed

+12
-4
lines changed

3 files changed

+12
-4
lines changed

README.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -173,11 +173,19 @@ poetry install
173173
```
174174

175175
Now we need to access our virtual environment, to do so you can run the following command:
176-
```
176+
177+
```bash
177178
poetry env activate
179+
```
180+
If the environment is not active, paste the command shown when `poetry env activate` is run, typically something like the command below:
181+
182+
```bash
183+
source /path_to_env/ENV_NAME/bin/activate
184+
```
185+
178186
To learn more about poetry environment management, visit their official documentation [here](https://python-poetry.org/docs/managing-environments/).
179187

180-
Test SOMEF installation
188+
Test the SOMEF installation run:
181189

182190
```bash
183191
somef --help

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "somef"
3-
version = "0.9.12"
3+
version = "0.9.13"
44
description = "SOftware Metadata Extraction Framework: A tool for automatically extracting relevant software metadata from a source code repository (README, package files, etc)."
55
authors = ["Daniel Garijo <daniel.garijo@upm.es>"]
66
readme = "README.md"

src/somef/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# -*- coding: utf-8 -*-
22

3-
__version__ = "0.9.12"
3+
__version__ = "0.9.13"

0 commit comments

Comments
 (0)