Skip to content

Commit

Permalink
Version 0.1.0
Browse files Browse the repository at this point in the history
Moved log file in setup.cfg
  • Loading branch information
Carlson Moses Büth committed Apr 11, 2023
1 parent e77bcb6 commit 2cafca4
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 1 addition & 3 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@

sys.path.insert(0, os.path.abspath(".."))

from superblockify import __version__

autodoc_mock_imports = [
"networkx",
"osmnx",
Expand All @@ -33,7 +31,7 @@
project = "superblockify"
copyright = "2023, Carlson Büth"
author = "Carlson Büth"
release = __version__
release = "0.1.0"

# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
Expand Down
2 changes: 2 additions & 0 deletions docs/guide/getting_started.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ Getting Started

:TODO: Write setup and first steps.

For now, find setup in the README.md file of the repository.

Setup
-----

Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ args = (sys.stdout,)
class = handlers.RotatingFileHandler
level = DEBUG
formatter = simpleFormatter
args = ('~/data/logs/superblockify.log', 'w+', 1e6, 3)
args = ('superblockify.log', 'w+', 1e6, 3)

[formatter_simpleFormatter]
format = %(asctime)s | %(levelname)8s | %(filename)s:%(lineno)d | %(message)s
2 changes: 1 addition & 1 deletion superblockify/_version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""superblockify package version."""

__version__ = "0.0.0"
__version__ = "0.1.0"

0 comments on commit 2cafca4

Please sign in to comment.