Skip to content

Commit ff11a17

Browse files
committed
update(docs): replace git+git:// with git+https:// ; update release history
1 parent 7e4bf2d commit ff11a17

File tree

5 files changed

+11
-7
lines changed

5 files changed

+11
-7
lines changed

docs/requirements-dev.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,6 @@ dependencies:
3232
- pip:
3333
- gis-utils
3434
- doctr
35-
- git+git://github.com/modflowpy/flopy@develop
36-
- git+git://github.com/aleaf/modflow-export@develop
35+
- git+https://github.com/modflowpy/flopy@develop
36+
- git+https://github.com/aleaf/modflow-export@develop
3737

docs/source/contributing.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ want to clone your fork to your machine::
151151

152152
git clone [email protected]:your-user-name/sfrmaker.git sfrmaker-yourname
153153
cd sfrmaker-yourname
154-
git remote add upstream git://github.com/sfrmaker/sfrmaker.git
154+
git remote add upstream https://github.com/sfrmaker/sfrmaker.git
155155

156156
This creates the directory `sfrmaker-yourname` and connects your repository to
157157
the upstream (main project) *SFRmaker* repository.

docs/source/installation.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,14 +125,14 @@ to incorporate a bug fix that was made after the latest release. Pip can also be
125125

126126
.. code-block:: bash
127127
128-
pip install git+git://github.com/doi-usgs/sfrmaker@develop
128+
pip install git+https://github.com/doi-usgs/sfrmaker@develop
129129
130130
(for the develop branch). Subsequent updates can then be made with
131131

132132
.. code-block:: bash
133133
134134
pip uninstall sfrmaker
135-
pip install git+git://github.com/doi-usgs/sfrmaker@develop
135+
pip install git+https://github.com/doi-usgs/sfrmaker@develop
136136
137137
Installing the SFRmaker source code in-place
138138
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

docs/source/release-history.rst

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,11 @@
22
Release History
33
===============
44

5-
Version 0.10.0 (2023-01-19)
5+
Version 0.10.1 (2023-02-06)
6+
---------------------------
7+
* fixes to adapt to breaking changes in numpy 1.24
8+
9+
Version 0.10.0 (2023-02-02)
610
---------------------------
711
* the Lines.df attribute is now a GeoDataFrame with an attached crs attribute representing the current coordinate reference system for the flowlines.
812
* more fixes related to passing CRS references from the constructor method for Lines and the model grid attribute, through to reprojection to the model grid CRS and creation of the SFR package.

docs/source/troubleshooting.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@ Updating SFRmaker
2121
``conda list`` can also be used to check if you SFRmaker is up to date.
2222

2323
* if you installed SFRmaker from PyPI (e.g. ``pip install sfrmaker``), the reported version should match `the latest <https://pypi.org/project/sfrmaker/>`_. Otherwise ``pip install --upgrade sfrmaker``.
24-
* if you installed SFRmaker from PyPI and you need to incorporate a recently pushed bug fix, you might need to reinstall directly from GitHub (e.g. ``pip install --upgrade git+git://github.com/usgs/sfrmaker@develop``)
24+
* if you installed SFRmaker from PyPI and you need to incorporate a recently pushed bug fix, you might need to reinstall directly from GitHub (e.g. ``pip install --upgrade git+https://github.com/usgs/sfrmaker@develop``)
2525
* if you cloned the SFRmaker source code and need to incorporate a recently pushed bug fix, you will need to pull (``git pull``) and possibly reinstall (``pip install --upgrade -e .`` in the root folder of the source code).
2626
* in the latter two cases (sfrmaker installed from GitHub), the version reported by ``conda list`` should match the latest commit hash. For example version ``0.8.0.post6+g91f0db4`` for the commit hash starting with ``91f0db4``.

0 commit comments

Comments
 (0)