Skip to content

Commit

Permalink
Merge branch 'master' into add_sparql_clause
Browse files Browse the repository at this point in the history
  • Loading branch information
ssssarah committed Mar 27, 2023
2 parents 8ed5370 + 16b49b1 commit f61113a
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
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
- name: Publish distribution package to PyPI
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Expand Up @@ -13,7 +13,7 @@ jobs:
- name: Install Python 3
uses: actions/setup-python@v2
with:
python-version: 3.7
python-version: 3.8
- name: Install dependencies
run: pip install .[dev]
- name: Run tests with pytest
Expand Down
2 changes: 1 addition & 1 deletion kgforge/core/archetypes/store.py
Expand Up @@ -88,7 +88,7 @@
"order",
"minus",
"not"
]



class Store(ABC):
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -35,7 +35,7 @@
keywords="framework knowledge graph data science",
url="https://github.com/BlueBrain/nexus-forge",
packages=find_packages(),
python_requires=">=3.7",
python_requires=">=3.8",
setup_requires=[
"setuptools_scm",
],
Expand Down
6 changes: 3 additions & 3 deletions tox.ini
Expand Up @@ -8,7 +8,7 @@ testdeps =
[tox]
envlist =
lint
py{37,38}
py{38,39}

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.6
basepython=python3.8
deps =
pycodestyle
pylint
Expand All @@ -44,4 +44,4 @@ whitelist_externals = make
# W504: line break before binary operator
[pycodestyle]
ignore = E731,W503,W504
max-line-length = 100
max-line-length = 200

0 comments on commit f61113a

Please sign in to comment.