Skip to content

Commit

Permalink
Updating Shapely to version 1.8.5.post1 across the repo
Browse files Browse the repository at this point in the history
  • Loading branch information
MattReimer committed Sep 17, 2024
1 parent e775e8b commit 2f5604f
Show file tree
Hide file tree
Showing 32 changed files with 70 additions and 36 deletions.
2 changes: 1 addition & 1 deletion .devcontainer/requirements.docker.txt
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ scikit-fuzzy==0.4.2
scikit-image==0.19.2
scipy>=1.8.1
semver==2.10.2
Shapely==1.8.2
Shapely==1.8.5.post1
snuggs==1.4.7
sympy==1.8
termcolor==1.1.0
Expand Down
34 changes: 34 additions & 0 deletions DEVELOPMENT_NOTES.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
## VSCode can't find my environemt

Because our workspaces are running in subfolders (usually `packages/TOOL_NAME`) sometimes VSCode doesn't include our `.venv` folder which is sitting in the root of the repo.

One way to make this work is just to symlink the `.venv` folder into the `packages/TOOL_NAME` folder. This way VSCode will be able to find the environment.

```bash
cd packages/TOOL_NAME
ln -s ../../.venv .venv
```

## Instructions for using `pyenv` on a MAc

### 1. Install `pyenv` using Homebrew
```bash
brew install pyenv
pyenv init
# Follow instructions to copy pyenv init to your shell's .zshrc or .bashrc
```

### 2. Install the version of python you want

```bash
pyenv install 3.8.10
```

### 3. Create a venv with the version of python you want

```bash
pyenv shell 3.8.10
python3 --version
```

You should now see `Python 3.8.10` as the version of python you are using. Now when you create your venv from running `bootstrap.sh` you should be able to get the correct version of python.
2 changes: 1 addition & 1 deletion bin/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ Rtree>=0.9.4
scikit-fuzzy==0.4.2
scipy>=1.8.1
semver==2.10.2
Shapely==1.8.2
Shapely==1.8.5.post1
six==1.15.0
snuggs==1.4.7
termcolor==1.1.0
Expand Down
2 changes: 1 addition & 1 deletion lib/commons/rscommons/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.4.9"
__version__ = "1.4.10"
2 changes: 1 addition & 1 deletion lib/commons/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
install_requires = [
'geojson', 'sciencebasepy', 'requests', 'semver>=2.10.2',
'termcolor', 'Cython>=0.29.23', 'numpy>=1.21.0', 'scipy>=1.8.1',
'argparse', 'GDAL>=3.0', 'rasterio>=1.1.5', 'Shapely==1.8.2',
'argparse', 'GDAL>=3.0', 'rasterio>=1.1.5', 'Shapely==1.8.5.post1',
'jinja2>=2.11.3', 'psutil==5.8.0'
]

Expand Down
2 changes: 1 addition & 1 deletion packages/anthro/anthro/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.0.0"
__version__ = "1.0.1"
2 changes: 1 addition & 1 deletion packages/anthro/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# https://packaging.python.org/discussions/install-requires-vs-requirements/
install_requires = [
'termcolor', 'Cython>=0.29.23', 'numpy>=1.21.0', 'scipy>=1.8.1',
'argparse', 'GDAL>=3.0', 'rasterio>=1.1.5', 'Shapely==1.8.2',
'argparse', 'GDAL>=3.0', 'rasterio>=1.1.5', 'Shapely==1.8.5.post1',
'rs-commons'
]

Expand Down
2 changes: 1 addition & 1 deletion packages/blm_context/blm_context/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.0.0"
__version__ = "1.0.1"
2 changes: 1 addition & 1 deletion packages/blm_context/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# https://packaging.python.org/discussions/install-requires-vs-requirements/
install_requires = [
'termcolor', 'Cython>=0.29.7', 'numpy>=1.16.3', 'scipy>=1.8.1',
'argparse', 'GDAL>=3.0', 'rasterio>=1.1.5', 'Shapely==1.8.2', 'scikit-fuzzy>=0.4.2',
'argparse', 'GDAL>=3.0', 'rasterio>=1.1.5', 'Shapely==1.8.5.post1', 'scikit-fuzzy>=0.4.2',
'rs-commons'
]

Expand Down
2 changes: 1 addition & 1 deletion packages/brat/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# https://packaging.python.org/discussions/install-requires-vs-requirements/
install_requires = [
'termcolor', 'Cython>=0.29.7', 'numpy>=1.16.3', 'scipy>=1.8.1',
'argparse', 'GDAL>=3.0', 'rasterio>=1.1.5', 'Shapely==1.8.2', 'scikit-fuzzy>=0.4.2',
'argparse', 'GDAL>=3.0', 'rasterio>=1.1.5', 'Shapely==1.8.5.post1', 'scikit-fuzzy>=0.4.2',
'rs-commons'
]

Expand Down
2 changes: 1 addition & 1 deletion packages/brat/sqlbrat/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "5.0.0"
__version__ = "5.0.1"
2 changes: 1 addition & 1 deletion packages/channel/channel/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "2.0.0"
__version__ = "2.0.1"
2 changes: 1 addition & 1 deletion packages/channel/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# https://packaging.python.org/discussions/install-requires-vs-requirements/
install_requires = [
'termcolor', 'Cython>=0.29.7', 'numpy>=1.16.3', 'scipy>=1.8',
'argparse', 'GDAL>=3.0', 'rasterio>=1.1.5', 'Shapely==1.8.2',
'argparse', 'GDAL>=3.0', 'rasterio>=1.1.5', 'Shapely==1.8.5.post1',
'rs-commons'
]

Expand Down
2 changes: 1 addition & 1 deletion packages/confinement/confinement/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "2.0.0"
__version__ = "2.0.1"
2 changes: 1 addition & 1 deletion packages/confinement/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# https://packaging.python.org/discussions/install-requires-vs-requirements/
install_requires = [
'termcolor', 'Cython>=0.29.7', 'numpy>=1.16.3', 'scipy>=1.8',
'argparse', 'GDAL>=3.0', 'rasterio>=1.1.5', 'Shapely==1.8.2',
'argparse', 'GDAL>=3.0', 'rasterio>=1.1.5', 'Shapely==1.8.5.post1',
'rs-commons'
]

Expand Down
2 changes: 1 addition & 1 deletion packages/hand/hand/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.1.0"
__version__ = "0.1.1"
2 changes: 1 addition & 1 deletion packages/hand/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# https://packaging.python.org/discussions/install-requires-vs-requirements/
install_requires = [
'termcolor', 'Cython>=0.29.7', 'numpy>=1.16.3', 'scipy>=1.8',
'argparse', 'GDAL>=3.0', 'rasterio>=1.1.5', 'Shapely==1.8.2',
'argparse', 'GDAL>=3.0', 'rasterio>=1.1.5', 'Shapely==1.8.5.post1',
'rs-commons'
]

Expand Down
2 changes: 1 addition & 1 deletion packages/hydro/hydro/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.0.0"
__version__ = "1.0.1"
2 changes: 1 addition & 1 deletion packages/hydro/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# https://packaging.python.org/discussions/install-requires-vs-requirements/
install_requires = [
'termcolor', 'Cython>=0.29.23', 'numpy>=1.21.0', 'scipy>=1.8.1',
'argparse', 'GDAL>=3.0', 'rasterio>=1.1.5', 'Shapely==1.8.2',
'argparse', 'GDAL>=3.0', 'rasterio>=1.1.5', 'Shapely==1.8.5.post1',
'rs-commons'
]

Expand Down
2 changes: 1 addition & 1 deletion packages/rcat/rcat/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "4.0.1"
__version__ = "4.0.2"
4 changes: 2 additions & 2 deletions packages/rcat/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# https://packaging.python.org/discussions/install-requires-vs-requirements/
install_requires = [
'termcolor', 'Cython>=0.29.23', 'numpy>=1.21.0', 'scipy>=1.8.1',
'argparse', 'GDAL>=3.0', 'rasterio>=1.1.5', 'Shapely==1.8.2',
'argparse', 'GDAL>=3.0', 'rasterio>=1.1.5', 'Shapely==1.8.5.post1',
'rs-commons'
]

Expand Down Expand Up @@ -36,4 +36,4 @@
packages=[
'rcat'
]
)
)
2 changes: 1 addition & 1 deletion packages/rme/rme/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "2.0.0"
__version__ = "2.0.1"
2 changes: 1 addition & 1 deletion packages/rme/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# https://packaging.python.org/discussions/install-requires-vs-requirements/
install_requires = [
'termcolor', 'Cython>=0.29.7', 'numpy>=1.16.3', 'scipy>=1.8',
'argparse', 'GDAL>=3.0', 'rasterio>=1.1.5', 'Shapely==1.8.2',
'argparse', 'GDAL>=3.0', 'rasterio>=1.1.5', 'Shapely==1.8.5.post1',
'rs-commons'
]

Expand Down
2 changes: 1 addition & 1 deletion packages/rscontext/rscontext/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "2.0.0"
__version__ = "2.0.1"
2 changes: 1 addition & 1 deletion packages/rscontext/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# https://packaging.python.org/discussions/install-requires-vs-requirements/
install_requires = [
'termcolor', 'Cython>=0.29.7', 'numpy>=1.16.3', 'scipy>=1.8',
'argparse', 'GDAL>=3.0', 'rasterio>=1.1.5', 'Shapely==1.8.2',
'argparse', 'GDAL>=3.0', 'rasterio>=1.1.5', 'Shapely==1.8.5.post1',
'rs-commons'
]

Expand Down
2 changes: 1 addition & 1 deletion packages/rvd/rvd/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.3.0"
__version__ = "0.3.1"
2 changes: 1 addition & 1 deletion packages/rvd/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# https://packaging.python.org/discussions/install-requires-vs-requirements/
install_requires = [
'termcolor', 'Cython>=0.29.7', 'numpy>=1.16.3', 'scipy>=1.8',
'argparse', 'GDAL>=3.0', 'rasterio>=1.1.5', 'Shapely==1.8.2',
'argparse', 'GDAL>=3.0', 'rasterio>=1.1.5', 'Shapely==1.8.5.post1',
'rs-commons'
]

Expand Down
2 changes: 1 addition & 1 deletion packages/taudem/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# https://packaging.python.org/discussions/install-requires-vs-requirements/
install_requires = [
'termcolor', 'Cython>=0.29.7', 'numpy>=1.16.3', 'scipy>=1.8',
'argparse', 'GDAL>=3.0', 'rasterio>=1.1.5', 'Shapely==1.8.2',
'argparse', 'GDAL>=3.0', 'rasterio>=1.1.5', 'Shapely==1.8.5.post1',
'rs-commons'
]

Expand Down
2 changes: 1 addition & 1 deletion packages/taudem/taudem/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "2.0.0"
__version__ = "2.0.1"
2 changes: 1 addition & 1 deletion packages/vbet/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# https://packaging.python.org/discussions/install-requires-vs-requirements/
install_requires = [
'termcolor', 'Cython>=0.29.23', 'numpy>=1.21.0', 'scipy>=1.8.1',
'argparse', 'GDAL>=3.0', 'rasterio>=1.1.5', 'Shapely==1.8.2',
'argparse', 'GDAL>=3.0', 'rasterio>=1.1.5', 'Shapely==1.8.5.post1',
'rs-commons'
]

Expand Down
2 changes: 1 addition & 1 deletion packages/vbet/vbet/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "4.0.1"
__version__ = "4.0.2"
10 changes: 5 additions & 5 deletions requirements_cybercastor.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,16 @@ appdirs==1.4.4
astroid==2.4.2
attrs==20.1.0
autopep8==1.5.4
awscli==1.19.66
click==7.1.2
click-plugins==1.1.1
cligj==0.5.0
colorama==0.4.3
Cython==3.0.8
Cython==0.29.23
decorator==4.4.2
distlib==0.3.1
docutils==0.15.2
filelock==3.0.12
GDAL==3.3.2
html5print==0.1.2
isort==5.4.2
jinja2>=2.11.3
Expand All @@ -28,26 +28,26 @@ psutil==5.8.0
psycopg2-binary==2.9.3
pyasn1==0.4.8
pycodestyle==2.6.0
pygeoprocessing==2.4.0
Pygments>=2.7.4
PyInquirer==1.0.3
pylint==2.6.0
pyparsing==2.4.7
python-dateutil==2.8.1
rasterio>=1.1.5
rasterio>=1.3.3
regex==2020.7.14
rsa>=4.7
Rtree>=0.9.4
scikit-fuzzy==0.4.2
scikit-image==0.19.2
scipy>=1.8.1
semver==2.10.2
Shapely==1.8.2
Shapely==1.8.5.post1
six==1.15.0
snuggs==1.4.7
sympy==1.8
termcolor==1.1.0
toml==0.10.1
urllib3>=1.26.5
virtualenv==20.0.26
wcwidth==0.2.5
wrapt==1.12.1

0 comments on commit 2f5604f

Please sign in to comment.