Skip to content

Commit c7d97b5

Browse files
authored
🏗️ Maintenance week 50: mostly library upgrades used in testings and better doc (#2019)
* Upgrades testing and tooling libraries such as importlib-metadata, packaging * UPdates docker package in all * Notes * Disables travis until #2029 resolved * Updates doc diagrams * Upgrades patch virtualenv for tooling * Updates deps on models-libray * Updates pg library * Updates s3 * Updates servicelib * Updates service lib * Updates simcore-sdk * Updates faker * Adds missing requirements from simcore-sdk * Fixes missing dependencies * Fixes dependencies in web-server * Fixes type annotations * pre-commit 2.9.2 -> 2.9.3 * watchdog 0.10.4 -> 1.0.0 Removes dep to pathtools * Fixes false update by ordering timestamps * testing tools: cryptography 3.2.1 -> 3.3.1 * testing tools: faker 5.0.0 -> 5.0.1 * removing unnecessary mocks backport lib fixes in webserver reqs * test tools: aiopg[sa] 1.0.0 -> 1.1.0 * Replaces mock by unittest.mock or pytest mocker
1 parent 8bcfa6b commit c7d97b5

File tree

53 files changed

+766
-713
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+766
-713
lines changed

README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<!-- NOTE: when branched replace `master` in urls -->
99
[![Code style: black]](https://github.com/psf/black)
1010
[![Requires.io]](https://requires.io/github/ITISFoundation/osparc-simcore/requirements/?branch=master "State of third party python dependencies")
11-
[![travis-ci]](https://travis-ci.org/ITISFoundation/osparc-simcore "State of CI: build, test and pushing images")
11+
<!-- [![travis-ci]](https://travis-ci.org/ITISFoundation/osparc-simcore "State of CI: build, test and pushing images") Commented until #2029 is resolved-->
1212
[![Github-CI Push/PR]](https://github.com/ITISFoundation/osparc-simcore/actions?query=workflow%3A%22Github-CI+Push%2FPR%22+branch%3Amaster)
1313
[![coveralls.io]](https://coveralls.io/github/ITISFoundation/osparc-simcore?branch=master)
1414
[![codecov.io]](https://codecov.io/gh/ITISFoundation/osparc-simcore)
@@ -124,6 +124,12 @@ Would you like to make a change or add something new? Please read the [contribut
124124
This project is licensed under the terms of the [MIT license](LICENSE).
125125

126126

127+
---
128+
129+
<p align="center">
130+
<img src="https://forthebadge.com/images/badges/built-with-love.svg" width="150">
131+
</p>
132+
127133
<!-- ADD REFERENCES BELOW AND KEEP THEM IN ALPHABETICAL ORDER -->
128134
[chocolatey]:https://chocolatey.org/
129135
[vscode]:https://code.visualstudio.com/

api/tests/requirements.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,17 +11,17 @@ chardet==3.0.4 # via aiohttp
1111
coverage==5.3 # via -r requirements.in, pytest-cov
1212
idna-ssl==1.1.0 # via aiohttp
1313
idna==2.10 # via idna-ssl, yarl
14-
importlib-metadata==3.0.0 # via jsonschema, pluggy, pytest
14+
importlib-metadata==3.1.1 # via jsonschema, pluggy, pytest
1515
iniconfig==1.1.1 # via pytest
1616
isodate==0.6.0 # via openapi-core, openapi-schema-validator
1717
jsonschema==3.2.0 # via openapi-schema-validator, openapi-spec-validator
18-
lazy-object-proxy==1.5.1 # via openapi-core
18+
lazy-object-proxy==1.5.2 # via openapi-core
1919
more-itertools==8.6.0 # via openapi-core
20-
multidict==5.0.2 # via aiohttp, yarl
20+
multidict==5.1.0 # via aiohttp, yarl
2121
openapi-core==0.13.4 # via -r requirements.in
2222
openapi-schema-validator==0.1.1 # via openapi-core
2323
openapi-spec-validator==0.2.9 # via openapi-core
24-
packaging==20.4 # via pytest, pytest-sugar
24+
packaging==20.7 # via pytest, pytest-sugar
2525
parse==1.18.0 # via openapi-core
2626
pluggy==0.13.1 # via pytest
2727
py==1.9.0 # via pytest
@@ -33,7 +33,7 @@ pytest-instafail==0.4.2 # via -r requirements.in
3333
pytest-sugar==0.9.4 # via -r requirements.in
3434
pytest==6.1.2 # via -r requirements.in, pytest-aiohttp, pytest-cov, pytest-instafail, pytest-sugar
3535
pyyaml==5.3.1 # via -c ../../requirements/constraints.txt, openapi-spec-validator
36-
six==1.15.0 # via isodate, jsonschema, openapi-core, openapi-schema-validator, openapi-spec-validator, packaging
36+
six==1.15.0 # via isodate, jsonschema, openapi-core, openapi-schema-validator, openapi-spec-validator
3737
strict-rfc3339==0.7 # via openapi-schema-validator
3838
termcolor==1.1.0 # via pytest-sugar
3939
toml==0.10.2 # via pytest
File renamed without changes.

ci/travis/DISABLED.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Temporary disabled until #2029 is resolved
-101 KB
Loading

packages/models-library/requirements/_base.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ dataclasses==0.8 # via pydantic
88
dnspython==2.0.0 # via email-validator
99
email-validator==1.1.2 # via pydantic
1010
idna==2.10 # via email-validator
11-
pydantic[email]==1.7.2 # via -r requirements/_base.in
11+
pydantic[email]==1.7.3 # via -r requirements/_base.in

packages/models-library/requirements/_test.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,21 +8,21 @@ aiohttp==3.7.3 # via pytest-aiohttp
88
astroid==2.4.2 # via pylint
99
async-timeout==3.0.1 # via aiohttp
1010
attrs==20.3.0 # via aiohttp, pytest
11-
certifi==2020.11.8 # via requests
11+
certifi==2020.12.5 # via requests
1212
chardet==3.0.4 # via aiohttp, requests
1313
coverage==5.3 # via -r requirements/_test.in, coveralls, pytest-cov
1414
coveralls==2.2.0 # via -r requirements/_test.in
1515
docopt==0.6.2 # via coveralls
1616
icdiff==1.9.1 # via pytest-icdiff
1717
idna-ssl==1.1.0 # via aiohttp
1818
idna==2.10 # via -c requirements/_base.txt, idna-ssl, requests, yarl
19-
importlib-metadata==3.0.0 # via pluggy, pytest
19+
importlib-metadata==3.1.1 # via pluggy, pytest
2020
iniconfig==1.1.1 # via pytest
2121
isort==5.6.4 # via pylint
2222
lazy-object-proxy==1.4.3 # via astroid
2323
mccabe==0.6.1 # via pylint
24-
multidict==5.0.2 # via aiohttp, yarl
25-
packaging==20.4 # via pytest, pytest-sugar
24+
multidict==5.1.0 # via aiohttp, yarl
25+
packaging==20.7 # via pytest, pytest-sugar
2626
pluggy==0.13.1 # via pytest
2727
pprintpp==0.4.0 # via pytest-icdiff
2828
py==1.9.0 # via pytest
@@ -37,7 +37,7 @@ pytest-runner==5.2 # via -r requirements/_test.in
3737
pytest-sugar==0.9.4 # via -r requirements/_test.in
3838
pytest==6.1.2 # via -r requirements/_test.in, pytest-aiohttp, pytest-cov, pytest-icdiff, pytest-instafail, pytest-mock, pytest-sugar
3939
requests==2.25.0 # via coveralls
40-
six==1.15.0 # via astroid, packaging
40+
six==1.15.0 # via astroid
4141
termcolor==1.1.0 # via pytest-sugar
4242
toml==0.10.2 # via pylint, pytest
4343
typed-ast==1.4.1 # via astroid

packages/models-library/requirements/_tools.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,21 +13,21 @@ dataclasses==0.8 # via -c requirements/_base.txt, black
1313
distlib==0.3.1 # via virtualenv
1414
filelock==3.0.12 # via virtualenv
1515
identify==1.5.10 # via pre-commit
16-
importlib-metadata==3.0.0 # via -c requirements/_test.txt, pre-commit, virtualenv
16+
importlib-metadata==3.1.1 # via -c requirements/_test.txt, pre-commit, virtualenv
1717
importlib-resources==3.3.0 # via pre-commit, virtualenv
1818
isort==5.6.4 # via -c requirements/_test.txt, -r requirements/../../../requirements/devenv.txt
1919
mypy-extensions==0.4.3 # via black
2020
nodeenv==1.5.0 # via pre-commit
2121
pathspec==0.8.1 # via black
2222
pip-tools==5.4.0 # via -r requirements/../../../requirements/devenv.txt
23-
pre-commit==2.9.2 # via -r requirements/../../../requirements/devenv.txt
23+
pre-commit==2.9.3 # via -r requirements/../../../requirements/devenv.txt
2424
pyyaml==5.3.1 # via -c requirements/../../../requirements/constraints.txt, pre-commit
2525
regex==2020.11.13 # via black
2626
six==1.15.0 # via -c requirements/_test.txt, pip-tools, virtualenv
2727
toml==0.10.2 # via -c requirements/_test.txt, black, pre-commit
2828
typed-ast==1.4.1 # via -c requirements/_test.txt, black
2929
typing-extensions==3.7.4.3 # via -c requirements/_test.txt, black
30-
virtualenv==20.2.1 # via pre-commit
30+
virtualenv==20.2.2 # via pre-commit
3131
zipp==3.4.0 # via -c requirements/_test.txt, importlib-metadata, importlib-resources
3232

3333
# The following packages are considered to be unsafe in a requirements file:

0 commit comments

Comments
 (0)