Skip to content

Commit

Permalink
upgrate to py3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
crisely09 committed Mar 28, 2024
1 parent 3ab3922 commit 5403b94
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Set up Python 3.7
- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.7
python-version: 3.8
- name: Build a source tarball
run:
python setup.py sdist
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,10 @@ jobs:
run: |
pytest --cov=./bluegraph
- name: Upload to codecov
if: ${{matrix.python-version == '3.7'}}
if: ${{matrix.python-version == '3.8'}}
uses: codecov/codecov-action@v1
with:
fail_ci_if_error: false
files: ./coverage.xml
flags: pytest
name: "bluegraph-py37"
name: "bluegraph-py38"
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ The same holds for the Neo4j backend: in order to use it, the database should be
Installing BlueGraph
^^^^^^^^^^^^^^^^^^^^^

BlueGraph supports Python versions >= 3.7 and pip >= 21.0.1. To update pip from the older versions run:
BlueGraph supports Python versions >= 3.8 and pip >= 21.0.1. To update pip from the older versions run:

::
Expand Down
2 changes: 1 addition & 1 deletion services/embedder/environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ channels:
- conda-forge
- pytorch
dependencies:
- python=3.7
- python=3.8
- flask
- numpy>=1.20.1
- pandas
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
keywords="framework knowledge graph data science",
url="https://github.com/BlueBrain/BlueGraph",
packages=find_packages(),
python_requires=">=3.7",
python_requires=">=3.8",
setup_requires=[
"setuptools_scm",
],
Expand Down
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ testdeps =
[tox]
envlist =
lint
py{37,38}
py38

indexserver =
default = https://bbpteam.epfl.ch/repository/devpi/simple
Expand All @@ -18,7 +18,7 @@ deps = {[base]testdeps}
commands = pytest tests

[testenv:lint]
basepython=python3.7
basepython=python3.8
deps =
pycodestyle
pylint
Expand Down

0 comments on commit 5403b94

Please sign in to comment.