Skip to content

Commit

Permalink
build: do not hard-pin dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
oniboni committed Aug 7, 2023
1 parent 70494dc commit 19ebfc6
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 21 deletions.
34 changes: 17 additions & 17 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
# See https://pre-commit.com for more information
# See https://pre-commit.com/hooks.html for more hooks
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v3.2.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: check-yaml
- id: check-added-large-files
- repo: https://github.com/psf/black
rev: 22.10.0
hooks:
- id: black
- repo: https://github.com/commitizen-tools/commitizen
rev: master
hooks:
- id: commitizen
- id: commitizen-branch
stages: [push]
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v3.2.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: check-yaml
- id: check-added-large-files
- repo: https://github.com/psf/black
rev: 22.10.0
hooks:
- id: black
- repo: https://github.com/commitizen-tools/commitizen
rev: v3.6.0
hooks:
- id: commitizen
- id: commitizen-branch
stages: [push]
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ classifiers = [
"Programming Language :: Python :: Implementation :: PyPy",
]
dependencies = [
"mkdocs == 1.4.2",
"requests == 2.28.2",
"beautifulsoup4 == 4.12.0",
"mkdocs <= 1.4.2",
"requests <= 2.31.0",
"beautifulsoup4 <= 4.12.0",
]
dynamic = ["version"]

Expand Down
2 changes: 1 addition & 1 deletion src/inline_svg/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.1.0"
__version__ = "0.1.1"

0 comments on commit 19ebfc6

Please sign in to comment.