Skip to content

Commit

Permalink
v7.0.1 fixed Makefile logic
Browse files Browse the repository at this point in the history
  • Loading branch information
ampledata committed Jun 24, 2024
1 parent 86ec668 commit cb95b94
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## PyTAK 7.0.0
## PyTAK 7.0.1

Happy Summer Solstice

Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
# limitations under the License.
#

REPO_NAME ?= $(shell echo $(wildcard */classes.py) | awk -F'/' '{print $$1}')
REPO_NAME ?= $(shell echo $(wildcard */__init__.py) | awk -F'/' '{print $$1}')
SHELL := /bin/bash
.DEFAULT_GOAL := editable
# postinst = $(wildcard debian/*.postinst.sh)
Expand Down
2 changes: 1 addition & 1 deletion pytak/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

"""Python Team Awareness Kit (PyTAK) Module."""

__version__ = "7.0.0"
__version__ = "7.0.1"

from .constants import ( # NOQA
LOG_LEVEL,
Expand Down

0 comments on commit cb95b94

Please sign in to comment.