Skip to content

Commit

Permalink
Merge pull request #634 from prancer-io/development
Browse files Browse the repository at this point in the history
Development
  • Loading branch information
ishan-pansuriya committed Dec 8, 2022
2 parents accbb99 + 557adb2 commit fc0c41e
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yaml
Expand Up @@ -30,7 +30,7 @@ jobs:

- name: testing
run: |
docker run --rm -v $(pwd):$(pwd) -w=$(pwd) python:3.6.8 sh dev-test.sh
# docker run --rm -v $(pwd):$(pwd) -w=$(pwd) python:3.6.8 sh dev-test.sh
docker run --rm -v $(pwd):$(pwd) -w=$(pwd) python:3.8 sh dev-test.sh
docker run --rm -v $(pwd):$(pwd) -w=$(pwd) python:3.9 sh dev-test.sh
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_development.yaml
Expand Up @@ -39,6 +39,6 @@ jobs:

- name: testing
run: |
docker run --rm -v $(pwd):$(pwd) -w=$(pwd) python:3.6.8 sh dev-test.sh
# docker run --rm -v $(pwd):$(pwd) -w=$(pwd) python:3.6.8 sh dev-test.sh
docker run --rm -v $(pwd):$(pwd) -w=$(pwd) python:3.8 sh dev-test.sh
docker run --rm -v $(pwd):$(pwd) -w=$(pwd) python:3.9 sh dev-test.sh
2 changes: 1 addition & 1 deletion .github/workflows/test_master.yaml
Expand Up @@ -37,6 +37,6 @@ jobs:

- name: testing
run: |
docker run --rm -v $(pwd):$(pwd) -w=$(pwd) python:3.6.8 sh dev-test.sh
# docker run --rm -v $(pwd):$(pwd) -w=$(pwd) python:3.6.8 sh dev-test.sh
docker run --rm -v $(pwd):$(pwd) -w=$(pwd) python:3.8 sh dev-test.sh
docker run --rm -v $(pwd):$(pwd) -w=$(pwd) python:3.9 sh dev-test.sh
2 changes: 1 addition & 1 deletion requirements.txt
Expand Up @@ -5,7 +5,7 @@ boto3==1.17.16
urllib3==1.26.5
cfn-flip==1.2.3
gitdb2==2.0.5
GitPython==3.1.11
GitPython==3.1.27
pymongo==3.10.0
attrs==19.1.0
pytest==4.0.1
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -18,7 +18,7 @@
setup(
name='prancer-basic',
# also update the version in processor.__init__.py file
version='2.1.46',
version='2.1.47',
description='Prancer Basic, http://prancer.io/',
long_description=LONG_DESCRIPTION,
license = "BSD",
Expand Down
2 changes: 1 addition & 1 deletion src/processor/__init__.py
@@ -1,3 +1,3 @@
# Prancer Basic

__version__ = '2.1.46'
__version__ = '2.1.47'
2 changes: 1 addition & 1 deletion src/processor/connector/snapshot_google.py
Expand Up @@ -660,7 +660,7 @@ def populate_google_snapshot(snapshot, container=None):
snapshot_dir = make_snapshots_dir(container)
if snapshot_dir:
store_snapshot(snapshot_dir, data)

if 'masterSnapshotId' in node:
snapshot_data[node['snapshotId']] = node['masterSnapshotId']
else:
Expand Down

0 comments on commit fc0c41e

Please sign in to comment.