Skip to content

Commit

Permalink
chore: prepare for release
Browse files Browse the repository at this point in the history
  • Loading branch information
carlmontanari committed Jan 28, 2023
1 parent 00fc91c commit f077a63
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 7 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,13 @@ jobs:
- name: setup publish env
run: |
python -m pip install --upgrade pip
python -m pip install setuptools
python -m pip install wheel
python -m pip install twine
python -m pip install setuptools wheel build twine
- name: build and publish
env:
TWINE_USERNAME: ${{ secrets.PYPI_USER }}
TWINE_PASSWORD: ${{ secrets.PYPI_PASS }}
run: |
python setup.py sdist bdist_wheel
python -m build
python -m twine upload dist/*
- name: create release branch
uses: peterjgrainger/[email protected]
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ dmypy.json

# private dir for notes and such
private/
.private/

# log output
*.log
Expand Down
2 changes: 1 addition & 1 deletion nornir_scrapli/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""nornir_scrapli"""

__version__ = "2022.07.30"
__version__ = "2023.01.30"
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ target-version = [

[tool.pylama]
linters = "mccabe,pycodestyle,pylint"
skip = ".nox/*,build/*,docs/*,private/*,site/*,tests/*,venv/*"
skip = ".nox/*,.private/*,build/*,docs/*,private/*,site/*,tests/*,venv/*"

[tool.pylama.pycodestyle]
max_line_length = 100
Expand Down
2 changes: 1 addition & 1 deletion requirements-docs.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ mdx-gh-links>=0.2,<1.0
mkdocs>=1.2.3,<2.0.0
mkdocs-gen-files>=0.4.0,<1.0.0
mkdocs-literate-nav>=0.5.0,<1.0.0
mkdocs-material>=8.1.6,<9.0.0
mkdocs-material>=8.1.6,<10.0.0
mkdocs-material-extensions>=1.0.3,<2.0.0
mkdocs-section-index>=0.3.4,<1.0.0
mkdocstrings[python]>=0.19.0,<1.0.0

0 comments on commit f077a63

Please sign in to comment.