Skip to content

Commit f880994

Browse files
author
Sarah Krebs
committed
Update version and correct typo
1 parent 13eaa0d commit f880994

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# are usually completed in github actions.
33

44
SHELL := /bin/bash
5-
VERSION := 1.2
5+
VERSION := 1.2.1
66

77
NAME := DeepCAVE
88
PACKAGE_NAME := deepcave
@@ -48,10 +48,10 @@ install:
4848
install-dev:
4949
$(PIP) install -e ".[dev]"
5050
pre-commit install
51-
51+
5252
install-examples:
5353
$(PIP) install -e ".[examples]"
54-
54+
5555
check-black:
5656
$(BLACK) ${SOURCE_DIR} --check || :
5757
$(BLACK) ${EXAMPLES_DIR} --check || :
@@ -123,7 +123,7 @@ publish: clean build
123123
$(PYTHON) -m twine upload --repository testpypi ${DIST}/*
124124
@echo
125125
@echo "Test with the following:"
126-
@echo "* Create a new virtual environment to install the uplaoded distribution into"
126+
@echo "* Create a new virtual environment to install the uploaded distribution into"
127127
@echo "* Run the following:"
128128
@echo "--- pip install --index-url https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple/ ${PACKAGE_NAME}==${VERSION}"
129129
@echo

deepcave/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"Source Code": "https://github.com/automl/deepcave",
2727
}
2828
copyright = f"Copyright {datetime.date.today().strftime('%Y')}, {author}"
29-
version = "1.2"
29+
version = "1.2.1"
3030

3131
_exec_file = sys.argv[0]
3232
_exec_files = ["server.py", "worker.py", "sphinx-build"]

0 commit comments

Comments
 (0)