Skip to content

Commit

Permalink
Universum 0.19.21
Browse files Browse the repository at this point in the history
  • Loading branch information
k-dovgan committed Nov 11, 2024
2 parents e240296 + 7ca9cff commit 7d8f3d5
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/postcommit-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
--no-diff

- name: Publish Test Results
uses: EnricoMi/publish-unit-test-result-action@v1
uses: EnricoMi/publish-unit-test-result-action@v2
if: always()
with:
files: artifacts/*.xml
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/precommit-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
--no-diff

- name: Publish Test Results
uses: EnricoMi/publish-unit-test-result-action@v1
uses: EnricoMi/publish-unit-test-result-action@v2
if: always()
with:
files: artifacts/*.xml
Expand Down
9 changes: 9 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
Change log
==========

0.19.21 (2024-11-11)
--------------------

Bug fixes
~~~~~~~~~

* **setup:** loosen the dependencies for multiplatforming


0.19.20 (2024-10-31)
--------------------

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def readme():
'lxml',
'typing-extensions',
'ansi2html',
'pyyaml==6.0'
'pyyaml>=6.0'
],
extras_require={
'p4': [p4],
Expand All @@ -59,7 +59,7 @@ def readme():
'types-requests',
'selenium==3.141',
'urllib3==1.26.15', # This is required for selenium-3.141 to work correctly
'types-PyYAML==6.0',
'types-PyYAML>=6.0',
'wheel'
]
},
Expand Down
2 changes: 1 addition & 1 deletion universum/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__title__ = "Universum"
__version__ = "0.19.20"
__version__ = "0.19.21"

0 comments on commit 7d8f3d5

Please sign in to comment.