Skip to content

Commit

Permalink
Update version of all packages to 0.1.0 and remove dependency on 0.0.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
aholmes committed Feb 7, 2024
1 parent 97c22c4 commit 6780a6b
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 15 deletions.
5 changes: 0 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,6 @@ packages = [
#
[project.optional-dependencies]
dev-dependencies = [
# testing automation. use specific versions so behavior does not change.
"pytest",
"pytest-mock",
"mock",
Expand All @@ -90,10 +89,6 @@ dev-dependencies = [
# which allows us to catch new types of problems.
"pyright",
"isort",
# specific version is nnecessary due to Flask dependency
# version conflict with `click`
# flask 1.1.4 depends on click<8.0 and >=5.1
# black 22.1.0 depends on click>=8.0.0
"black"
]

Expand Down
2 changes: 1 addition & 1 deletion src/AWS/BL_Python/AWS/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__: str = "0.0.1"
__version__: str = "0.1.0"
2 changes: 1 addition & 1 deletion src/GitHub/BL_Python/GitHub/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__: str = "0.0.1"
__version__: str = "0.1.0"

from .api import GitHub

Expand Down
2 changes: 1 addition & 1 deletion src/database/BL_Python/database/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__: str = "0.0.1"
__version__: str = "0.1.0"
3 changes: 2 additions & 1 deletion src/database/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ classifiers = [
]

dependencies = [
"BL_Python.programming == 0.0.1",
"BL_Python.programming",

"sqlalchemy ~= 1.4",
"alembic ~= 1.8",
"sqlalchemy2-stubs ~= 0.0.2a34",
Expand Down
2 changes: 1 addition & 1 deletion src/development/BL_Python/development/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__: str = "0.0.1"
__version__: str = "0.1.0"
from BL_Python.development.profiling import do_profile

__all__ = ("do_profile",)
2 changes: 1 addition & 1 deletion src/platform/BL_Python/platform/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__: str = "0.0.1"
__version__: str = "0.1.0"
2 changes: 1 addition & 1 deletion src/programming/BL_Python/programming/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__: str = "0.0.1"
__version__: str = "0.1.0"
2 changes: 1 addition & 1 deletion src/testing/BL_Python/testing/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__: str = "0.0.1"
__version__: str = "0.1.0"
2 changes: 1 addition & 1 deletion src/web/BL_Python/web/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__: str = "0.0.1"
__version__: str = "0.1.0"
2 changes: 1 addition & 1 deletion src/web/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ classifiers = [
]

dependencies = [
"BL_Python.programming == 0.0.1",
"BL_Python.programming",

"Flask",
"flask-injector",
Expand Down

0 comments on commit 6780a6b

Please sign in to comment.