summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJarrod Millman <jarrod.millman@gmail.com>2021-06-22 23:49:02 -0700
committerJarrod Millman <jarrod.millman@gmail.com>2021-06-22 23:49:02 -0700
commit654611019cb9ec7532edf4f1d3b0b92e630162f0 (patch)
treee5e008dd7c08189dae59c2a25cb803f999e966b9
parent33abdebcbf4080bbee302e1a7aa5a1eaad7481fe (diff)
downloadnetworkx-654611019cb9ec7532edf4f1d3b0b92e630162f0.tar.gz
Bump release version
-rw-r--r--.github/workflows/test.yml6
-rw-r--r--doc/developer/release.rst14
-rw-r--r--networkx/__init__.py2
3 files changed, 8 insertions, 14 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 8020105d..cc10ce4f 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -1,10 +1,6 @@
name: test
-on:
- push:
- branches: [ main ]
- pull_request:
- branches: [ main ]
+on: [push, pull_request]
jobs:
diff --git a/doc/developer/release.rst b/doc/developer/release.rst
index 9c79ccce..445755af 100644
--- a/doc/developer/release.rst
+++ b/doc/developer/release.rst
@@ -89,16 +89,14 @@ Release Process
# you will then need to force the push so be careful!
git push
- - Increase the version number
+- Update ``__version__`` in ``networkx/__init__.py``.
- - Toggle ``dev = False`` to ``dev = True`` in ``networkx/release.py``.
- - Update ``major`` and ``minor`` in ``networkx/release.py``.
- - Append the following to ``doc/_templates/layout.html``::
+- Append the following to ``doc/_templates/layout.html``::
- {% block document %}
- {% include "dev_banner.html" %}
- {{ super() }}
- {% endblock %}
+ {% block document %}
+ {% include "dev_banner.html" %}
+ {{ super() }}
+ {% endblock %}
- Commit and push changes::
diff --git a/networkx/__init__.py b/networkx/__init__.py
index 76949748..0ae71c1a 100644
--- a/networkx/__init__.py
+++ b/networkx/__init__.py
@@ -8,7 +8,7 @@ structure, dynamics, and functions of complex networks.
See https://networkx.org for complete documentation.
"""
-__version__ = "2.6rc2"
+__version__ = "2.6rc3.dev0"
def __getattr__(name):