Skip to content

Commit

Permalink
Fix dependencies to specific versions, so Logya 4 works
Browse files Browse the repository at this point in the history
Bumb version
  • Loading branch information
yaph committed Oct 26, 2022
1 parent ec13d2a commit 4679c89
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pythonpackage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Python package
on:
push:
branches:
- master
- main

jobs:
build:
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ dist: clean
python setup.py bdist_wheel
ls -l dist

# Call example: make release version=4.7.1
# Call example: make release version=4.7.3
release: dist
git tag -a $(version) -m 'Create version $(version)'
git push --tags
Expand Down
5 changes: 5 additions & 0 deletions docs/changes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@
Changes
=======

4.7.3
-----

* Fix dependencies to specific versions, so Logya 4 works.

4.7.2
-----

Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@
# built documents.
#
# The short X.Y version.
version = '4.7.2'
version = '4.7.3'
# The full version, including alpha/beta/rc tags.
release = '4.7.2'
release = '4.7.3'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion logya/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-
__author__ = 'Ramiro Gómez'
__email__ = '[email protected]'
__version__ = '4.7.2'
__version__ = '4.7.3'

# Extensions of content files that will be processed by Logya.
allowed_exts = {
Expand Down
7 changes: 4 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
Jinja2>=2.10.1
Markdown>=3.1.1
PyYAML>=5.1.2
Jinja2==2.11.3
Markdown==3.4.1
MarkupSafe==2.0.1
PyYAML==6.0

0 comments on commit 4679c89

Please sign in to comment.