Skip to content

Commit

Permalink
Version 0.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mpenning committed Mar 3, 2024
1 parent 24fe9be commit 0776a69
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 15 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,6 @@ jobs:
true ###############################################################
python -m pip install --upgrade pip
pip install -U pytest
pip install -Ur './requirements/requirements.txt'
pip install -Ur './requirements/requirements-dev.txt'
- name: Run pytest
run: |
true ###############################################################
Expand Down
2 changes: 0 additions & 2 deletions .lgtm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@ extraction:
python:
python_setup:
version: 3
requirements_files:
- requirements.txt
setup_py: false

queries:
Expand Down
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -324,8 +324,7 @@ This uses the example of editing the package on a git branch called `develop`...
Building the ciscoconfparse2 documentation tarball comes down to this one wierd trick:

- `cd sphinx-doc/`
- `pip install -r ./requirements.txt; # install Sphinx dependencies`
- `pip install -r ../requirements.txt; # install ccp dependencies`
- `pip install ciscoconfparse`
- `make html`

## License and Copyright
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[project]
name = "ciscoconfparse2"
version = "0.7.0"
version = "0.7.1"
description = "Parse, Audit, Query, Build, and Modify Cisco IOS-style and JunOS-style configs"
readme = "README.md"
license = "GPL-3.0-only"
Expand Down
3 changes: 1 addition & 2 deletions sphinx-doc/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,5 @@
Building the ccp documentation package comes down to this one wierd trick:

- `cd sphinx-doc/`
- `pip install -r ./requirements.txt; # install Sphinx dependencies`
- `pip install -r ../requirements.txt; # install ccp dependencies`
- `pip install ciscoconfparse`
- `make html`
12 changes: 6 additions & 6 deletions sphinx-doc/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -16,27 +16,27 @@ Tests pass on the latest OSX without doing this, but to get ``scrypt`` to instal
pip
---

``pip install -U ciscoconfparse2 >= 0.6.7``
``pip install -U ciscoconfparse2 >= 0.7.1``

requirements.txt: pypi
----------------------

If you need a direct ``pypi`` dependency entry in your ``requirements.txt``
file, you can include an entry like this.

``ciscoconfparse2 == 0.7.0``
``ciscoconfparse2 == 0.7.1``

``0.7.0`` is used only as a reference; choose the correct release for your
``0.7.1`` is used only as a reference; choose the correct release for your
project.

requirements.txt: github
------------------------

If you need a direct ``git`` dependency entry in your ``requirements.txt``
file, you can include an entry like this (where ``0.6.7`` is a specific
file, you can include an entry like this (where ``0.7.1`` is a specific
``git tag`` that you want to reference).

``git+https://github.com/mpenning/[email protected].0``
``git+https://github.com/mpenning/[email protected].1``

``0.7.0`` is used only as a reference; choose the correct release for your
``0.7.1`` is used only as a reference; choose the correct release for your
project.

0 comments on commit 0776a69

Please sign in to comment.