Skip to content

Commit 4679c89

Browse files
committed
Fix dependencies to specific versions, so Logya 4 works
Bumb version
1 parent ec13d2a commit 4679c89

File tree

6 files changed

+14
-8
lines changed

6 files changed

+14
-8
lines changed

.github/workflows/pythonpackage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Python package
33
on:
44
push:
55
branches:
6-
- master
6+
- main
77

88
jobs:
99
build:

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ dist: clean
6969
python setup.py bdist_wheel
7070
ls -l dist
7171

72-
# Call example: make release version=4.7.1
72+
# Call example: make release version=4.7.3
7373
release: dist
7474
git tag -a $(version) -m 'Create version $(version)'
7575
git push --tags

docs/changes.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@
33
Changes
44
=======
55

6+
4.7.3
7+
-----
8+
9+
* Fix dependencies to specific versions, so Logya 4 works.
10+
611
4.7.2
712
-----
813

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,9 @@
4848
# built documents.
4949
#
5050
# The short X.Y version.
51-
version = '4.7.2'
51+
version = '4.7.3'
5252
# The full version, including alpha/beta/rc tags.
53-
release = '4.7.2'
53+
release = '4.7.3'
5454

5555
# The language for content autogenerated by Sphinx. Refer to documentation
5656
# for a list of supported languages.

logya/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22
__author__ = 'Ramiro Gómez'
33
__email__ = 'code@ramiro.org'
4-
__version__ = '4.7.2'
4+
__version__ = '4.7.3'
55

66
# Extensions of content files that will be processed by Logya.
77
allowed_exts = {

requirements.txt

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1-
Jinja2>=2.10.1
2-
Markdown>=3.1.1
3-
PyYAML>=5.1.2
1+
Jinja2==2.11.3
2+
Markdown==3.4.1
3+
MarkupSafe==2.0.1
4+
PyYAML==6.0

0 commit comments

Comments
 (0)