Skip to content

Commit

Permalink
Version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
romainsacchi authored and romainsacchi committed Jan 23, 2024
1 parent 3b304ad commit 2548e10
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion carculator_bus/__init__.py
Expand Up @@ -19,7 +19,7 @@
)

# library version
__version__ = (0, 0, 8)
__version__ = (0, 1, 0, "dev0")

from pathlib import Path

Expand Down
3 changes: 2 additions & 1 deletion carculator_bus/inventory.py
Expand Up @@ -3,11 +3,12 @@
"""

import numpy as np
import warnings
from carculator_utils.inventory import Inventory

from . import DATA_DIR

np.warnings.filterwarnings("ignore", category=np.VisibleDeprecationWarning)
warnings.filterwarnings("ignore", category=np.VisibleDeprecationWarning)

IAM_FILES_DIR = DATA_DIR / "IAM"

Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
@@ -1,2 +1,2 @@
carculator_utils
carculator_utils==1.2.0.dev0
prettytable
4 changes: 2 additions & 2 deletions setup.py
Expand Up @@ -33,15 +33,15 @@ def package_files(directory):

setup(
name="carculator_bus",
version="0.0.8",
version="0.1.0.dev0",
packages=packages,
author="Romain Sacchi <romain.sacchi@psi.ch>",
license=open("LICENSE").read(),
package_data={
"carculator_bus": package_files(os.path.join("carculator_bus", "data"))
},
install_requires=[
"carculator_utils",
"carculator_utils==1.2.0.dev0",
"prettytable",
],
url="https://github.com/romainsacchi/carculator_bus",
Expand Down

0 comments on commit 2548e10

Please sign in to comment.