Skip to content

Commit

Permalink
Merge pull request #1688 from AdeelH/bump-dev
Browse files Browse the repository at this point in the history
Bump dev version to 0.20.3-dev
  • Loading branch information
AdeelH committed Jan 30, 2023
2 parents 2b17b37 + e7e0ad2 commit 72077af
Show file tree
Hide file tree
Showing 19 changed files with 29 additions and 29 deletions.
4 changes: 2 additions & 2 deletions cookiecutter_template/cookiecutter.json
Expand Up @@ -2,8 +2,8 @@
"caps_project_name": "MY_PROJECT",
"project_name": "my_project",
"docker_image": "my_project",
"parent_docker_image": "quay.io/azavea/raster-vision:pytorch-0.20.2-dev",
"version": "0.20.2-dev",
"parent_docker_image": "quay.io/azavea/raster-vision:pytorch-0.20.3-dev",
"version": "0.20.3-dev",
"description": "A Raster Vision plugin",
"url": "https://github.com/azavea/raster-vision",
"author": "Azavea",
Expand Down
@@ -1 +1 @@
rastervision==0.20.2-dev
rastervision==0.20.3-dev
2 changes: 1 addition & 1 deletion docs/conf.py
Expand Up @@ -74,7 +74,7 @@ def setup(app: 'Sphinx') -> None:
# The short X.Y version.
version = u'0.20'
# The full version, including alpha/beta/rc tags
release = u'0.20.2-dev'
release = u'0.20.3-dev'

# -- Extension configuration --------------------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion rastervision_aws_batch/requirements.txt
@@ -1,3 +1,3 @@
rastervision_pipeline==0.20.2-dev
rastervision_pipeline==0.20.3-dev
boto3==1.24.89
awscli==1.25.90
2 changes: 1 addition & 1 deletion rastervision_aws_batch/setup.py
Expand Up @@ -10,7 +10,7 @@
install_requires = [x.strip() for x in all_reqs if 'git+' not in x]

name = 'rastervision_aws_batch'
version = '0.20.2-dev'
version = '0.20.3-dev'
description = 'A rastervision plugin that adds an AWS Batch pipeline runner'

setup(
Expand Down
2 changes: 1 addition & 1 deletion rastervision_aws_s3/requirements.txt
@@ -1,4 +1,4 @@
rastervision_pipeline==0.20.2-dev
rastervision_pipeline==0.20.3-dev
boto3==1.24.89
awscli==1.25.90
tqdm==4.64.1
Expand Down
2 changes: 1 addition & 1 deletion rastervision_aws_s3/setup.py
Expand Up @@ -10,7 +10,7 @@
install_requires = [x.strip() for x in all_reqs if 'git+' not in x]

name = 'rastervision_aws_s3'
version = '0.20.2-dev'
version = '0.20.3-dev'
description = 'A rastervision plugin that adds an AWS S3 file system'

setup(
Expand Down
2 changes: 1 addition & 1 deletion rastervision_core/requirements.txt
@@ -1,4 +1,4 @@
rastervision_pipeline==0.20.2-dev
rastervision_pipeline==0.20.3-dev

# These 3 should be updated together to ensure compatibility. Incompatibility
# results in a warning about pygeos versions.
Expand Down
2 changes: 1 addition & 1 deletion rastervision_core/setup.py
Expand Up @@ -10,7 +10,7 @@
install_requires = [x.strip() for x in all_reqs if 'git+' not in x]

name = 'rastervision_core'
version = '0.20.2-dev'
version = '0.20.3-dev'
description = 'A rastervision plugin that adds geospatial machine learning pipelines'

setup(
Expand Down
2 changes: 1 addition & 1 deletion rastervision_gdal_vsi/requirements.txt
@@ -1,2 +1,2 @@
rastervision_pipeline==0.20.2-dev
rastervision_pipeline==0.20.3-dev
gdal==3.5.2
2 changes: 1 addition & 1 deletion rastervision_gdal_vsi/setup.py
Expand Up @@ -10,7 +10,7 @@
install_requires = [x.strip() for x in all_reqs if 'git+' not in x]

name = 'rastervision_gdal_vsi'
version = '0.20.2-dev'
version = '0.20.3-dev'
description = 'A rastervision plugin that adds a GDAL VSI file system'

setup(
Expand Down
2 changes: 1 addition & 1 deletion rastervision_pipeline/rastervision/pipeline/version.py
@@ -1,2 +1,2 @@
"""Library verison"""
__version__ = '0.20.2-dev'
__version__ = '0.20.3-dev'
2 changes: 1 addition & 1 deletion rastervision_pipeline/setup.py
Expand Up @@ -10,7 +10,7 @@
install_requires = [x.strip() for x in all_reqs if 'git+' not in x]

name = 'rastervision_pipeline'
version = '0.20.2-dev'
version = '0.20.3-dev'
description = 'The main rastervision package for configuring, defining, and running pipelines'

setup(
Expand Down
8 changes: 4 additions & 4 deletions rastervision_pytorch_backend/requirements.txt
@@ -1,4 +1,4 @@
rastervision_pipeline==0.20.2-dev
rastervision_core==0.20.2-dev
rastervision_pytorch_learner==0.20.2-dev
rastervision_aws_s3==0.20.2-dev
rastervision_pipeline==0.20.3-dev
rastervision_core==0.20.3-dev
rastervision_pytorch_learner==0.20.3-dev
rastervision_aws_s3==0.20.3-dev
2 changes: 1 addition & 1 deletion rastervision_pytorch_backend/setup.py
Expand Up @@ -10,7 +10,7 @@
install_requires = [x.strip() for x in all_reqs if 'git+' not in x]

name = 'rastervision_pytorch_backend'
version = '0.20.2-dev'
version = '0.20.3-dev'
description = 'A rastervision plugin that adds PyTorch backends for rastervision.core pipelines'

setup(
Expand Down
4 changes: 2 additions & 2 deletions rastervision_pytorch_learner/requirements.txt
@@ -1,5 +1,5 @@
rastervision_pipeline==0.20.2-dev
rastervision_core==0.20.2-dev
rastervision_pipeline==0.20.3-dev
rastervision_core==0.20.3-dev
numpy==1.23.3
pillow==9.3.0
torch==1.12.1
Expand Down
2 changes: 1 addition & 1 deletion rastervision_pytorch_learner/setup.py
Expand Up @@ -10,7 +10,7 @@
install_requires = [x.strip() for x in all_reqs if 'git+' not in x]

name = 'rastervision_pytorch_learner'
version = '0.20.2-dev'
version = '0.20.3-dev'
description = 'A rastervision plugin that adds PyTorch training pipelines'

setup(
Expand Down
12 changes: 6 additions & 6 deletions requirements.txt
@@ -1,6 +1,6 @@
rastervision_pipeline==0.20.2-dev
rastervision_aws_s3==0.20.2-dev
rastervision_aws_batch==0.20.2-dev
rastervision_core==0.20.2-dev
rastervision_pytorch_learner==0.20.2-dev
rastervision_pytorch_backend==0.20.2-dev
rastervision_pipeline==0.20.3-dev
rastervision_aws_s3==0.20.3-dev
rastervision_aws_batch==0.20.3-dev
rastervision_core==0.20.3-dev
rastervision_pytorch_learner==0.20.3-dev
rastervision_pytorch_backend==0.20.3-dev
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -9,7 +9,7 @@
from imp import load_source

here = op.abspath(op.dirname(__file__))
__version__ = '0.20.2-dev'
__version__ = '0.20.3-dev'

# get the dependencies and installs
with io.open(op.join(here, 'requirements.txt'), encoding='utf-8') as f:
Expand Down

0 comments on commit 72077af

Please sign in to comment.