Skip to content
This repository has been archived by the owner on Oct 23, 2023. It is now read-only.

Commit

Permalink
Merge pull request #249 from CSCfi/dev
Browse files Browse the repository at this point in the history
v1.6.4
  • Loading branch information
teemukataja authored Jan 9, 2023
2 parents 4ef6b98 + 4bf9007 commit 43bcfeb
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 15 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/unit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox tox-gh-actions coveragepy-lcov
pip install tox tox-gh-actions coverage
- name: Run unit tests for python 3.8
run: |
tox -e py38
coveragepy-lcov --output_file_path lcov.info
coverage lcov -o lcov.info
- name: Send coverage to coveralls
uses: coverallsapp/github-action@master
with:
Expand Down
6 changes: 3 additions & 3 deletions docs/examples.rst
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ Response
"updatedAt": "2019-08-02 00:00:13.006256+00:00",
"contactUrl": "https://www.csc.fi/contact-info",
"environment": "dev",
"version": "1.6.3",
"version": "1.6.4",
"url": "https://staging-elixirbeacon.rahtiapp.fi/"
},
{
Expand All @@ -301,7 +301,7 @@ Response
"updatedAt": "2019-08-02 00:00:13.016122+00:00",
"contactUrl": "https://www.csc.fi/contact-info",
"environment": "prod",
"version": "1.6.3",
"version": "1.6.4",
"url": "https://staging-elixirbeacon.rahtiapp.fi/"
},
{
Expand Down Expand Up @@ -362,7 +362,7 @@ Response
"updatedAt": "2019-08-02 00:00:13.006256+00:00",
"contactUrl": "https://www.csc.fi/contact-info",
"environment": "dev",
"version": "1.6.3",
"version": "1.6.4",
"url": "https://staging-elixirbeacon.rahtiapp.fi/"
}
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ asyncio==3.4.3
aiohttp==3.8.3
aiohttp-cors==0.7.0
aiocache==0.11.1
aiomcache==0.7.0
ujson==5.6.0
aiomcache==0.8.0
ujson==5.7.0
uvloop==0.14.0; python_version < '3.7'
uvloop==0.17.0; python_version >= '3.7'
asyncpg==0.27.0
Expand Down
16 changes: 8 additions & 8 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name="beacon_network",
version="1.6.3",
version="1.6.4",
description="Beacon Network services",
long_description_content_type="text/markdown",
project_urls={
Expand Down Expand Up @@ -33,8 +33,8 @@
"aiohttp==3.8.3",
"aiohttp-cors==0.7.0",
"aiocache==0.11.1",
"aiomcache==0.7.0",
"ujson==5.6.0",
"aiomcache==0.8.0",
"ujson==5.7.0",
"uvloop==0.14.0; python_version < '3.7'",
"uvloop==0.17.0; python_version >= '3.7'",
"asyncpg==0.27.0",
Expand All @@ -43,16 +43,16 @@
],
extras_require={
"test": [
"coverage==6.5.0",
"coverage==7.0.4",
"pytest<7.3",
"pytest-cov==4.0.0",
"testfixtures==7.0.3",
"tox==3.27.1",
"testfixtures==7.0.4",
"tox==4.2.6",
"flake8==6.0.0",
"flake8-docstrings==1.6.0",
"asynctest==0.13.0",
"aioresponses==0.7.3",
"black==22.10.0",
"aioresponses==0.7.4",
"black==22.12.0",
],
"docs": ["sphinx >= 1.4", "sphinx_rtd_theme==1.1.1"],
},
Expand Down

0 comments on commit 43bcfeb

Please sign in to comment.