Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated to use ETCD database instead of redis #85

Merged
merged 3 commits into from
Feb 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,5 @@ gunicorn~=19.9
falcon~=3.1
jsontas~=1.3
packageurl-python~=0.11
etcd3gw~=2.3
etos_lib==3.2.2
19 changes: 10 additions & 9 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,16 @@ package_dir =
setup_requires = pyscaffold>=3.2a0,<3.3a0
# Add here dependencies of your project (semicolon/line-separated), e.g.
install_requires =
eventlet~=0.33
celery~=5.3
cryptography~=41.0
gevent~=23.7
gunicorn~=19.9
falcon~=3.1
jsontas~=1.3
packageurl-python~=0.11
etos_lib==3.2.2
eventlet~=0.33
celery~=5.3
cryptography~=41.0
gevent~=23.7
gunicorn~=19.9
falcon~=3.1
jsontas~=1.3
packageurl-python~=0.11
etcd3gw~=2.3
etos_lib==3.2.2

python_requires = >=3.8

Expand Down
7 changes: 4 additions & 3 deletions src/environment_provider/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2022 Axis Communications AB.
# Copyright Axis Communications AB.
#
# For a full list of individual contributors, please see the commit history.
#
Expand All @@ -14,9 +14,10 @@
# See the License for the specific language governing permissions and
# limitations under the License.
"""ETOS environment provider module."""
import os
import logging
from importlib.metadata import version, PackageNotFoundError
import os
from importlib.metadata import PackageNotFoundError, version

from etos_lib.logging.logger import setup_logging

try:
Expand Down
Loading
Loading