-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #416 from CLARIAH/dev
Preparing for 1.3.8 release
- Loading branch information
Showing
30 changed files
with
476 additions
and
232 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
version: 2 | ||
|
||
updates: | ||
- package-ecosystem: "pip" | ||
directory: "/" | ||
schedule: | ||
interval: "monthly" | ||
target-branch: "dev" | ||
# Add reviewers | ||
reviewers: | ||
- "albertmeronyo" | ||
- "c-martinez" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
name: Publish | ||
# Publish to PyPI when a new release is published | ||
on: | ||
release: | ||
types: | ||
- published | ||
jobs: | ||
publish: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up Python | ||
uses: actions/setup-python@v1 | ||
with: | ||
python-version: 3.7 | ||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install setuptools wheel twine | ||
python setup.py sdist bdist_wheel | ||
- name: Publish package | ||
uses: pypa/[email protected] | ||
with: | ||
user: __token__ | ||
password: ${{ secrets.PYPI_API_TOKEN }} | ||
# repository_url: https://test.pypi.org/legacy/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: Testing | ||
on: [push] | ||
jobs: | ||
build: | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: [ubuntu-latest, macos-latest, windows-latest] | ||
python-version: [3.7, 3.8, 3.9] | ||
steps: | ||
- uses: actions/checkout@master | ||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install . | ||
pip install -r requirements-test.txt | ||
- name: Test with pytest | ||
run: | | ||
pytest ./tests |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
# | ||
# SPDX-License-Identifier: MIT | ||
|
||
FROM python:3.6.8 | ||
FROM python:3.8.16 | ||
MAINTAINER [email protected] | ||
|
||
# Default values for env variables | ||
|
@@ -26,14 +26,14 @@ ENV GRLC_INSTALL_DIR="${GRLC_HOME}/grlc" \ | |
GRLC_RUNTIME_DIR="${GRLC_CACHE_DIR}/runtime" | ||
|
||
RUN apt-get update \ | ||
&& DEBIAN_FRONTEND=noninteractive apt-get install -y nginx git-core logrotate python-pip locales gettext-base sudo build-essential apt-utils \ | ||
&& DEBIAN_FRONTEND=noninteractive apt-get install -y nginx git-core logrotate python3-pip locales gettext-base sudo build-essential apt-utils \ | ||
&& update-locale LANG=C.UTF-8 LC_MESSAGES=POSIX \ | ||
&& locale-gen en_US.UTF-8 \ | ||
&& DEBIAN_FRONTEND=noninteractive dpkg-reconfigure locales \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
||
RUN curl -sL https://deb.nodesource.com/setup_10.x | sudo -E bash - | ||
RUN apt-get update && apt-get install -y nodejs | ||
# RUN curl -sL https://deb.nodesource.com/setup_10.x | sudo -E bash - | ||
RUN apt-get update && apt-get install -y nodejs npm | ||
|
||
COPY ./ ${GRLC_INSTALL_DIR} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
mock==2.0.0 | ||
pytest==5.2.1 | ||
flake8==3.9.2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,28 @@ | ||
docopt==0.6.2 | ||
docutils==0.17.1 | ||
Flask==1.0.2 | ||
Flask-Cors==3.0.6 | ||
gevent==1.4.0 | ||
greenlet==0.4.15 | ||
Flask-Cors==3.0.9 | ||
gevent==1.4.0; python_version <= '3.8' | ||
gevent==22.10.2; python_version > '3.8' | ||
greenlet==0.4.15; python_version <= '3.8' | ||
greenlet==2.0.0; python_version > '3.8' | ||
html5lib==1.0.1 | ||
isodate==0.5.4 | ||
keepalive==0.5 | ||
isodate==0.6.1 | ||
itsdangerous==2.0.1 | ||
MarkupSafe==0.23 | ||
pyaml==18.11.0 | ||
pyparsing==2.0.7 | ||
python-gitlab==2.10.1 | ||
PyYAML==5.4 | ||
rdflib==5.0.0 | ||
rdflib-jsonld==0.4.0 | ||
requests==2.20.0 | ||
rdflib-jsonld==0.6.2 | ||
requests==2.31.0 | ||
six==1.12.0 | ||
simplejson==3.16.0 | ||
setuptools>=38.6.0 | ||
SPARQLTransformer==2.1.1 | ||
SPARQLWrapper==1.8.2 | ||
werkzeug>=0.16.0 | ||
PyGithub==1.43.5 | ||
werkzeug==0.16.0 | ||
PyGithub==1.57 | ||
gunicorn==19.6.0; sys_platform!="win32" | ||
waitress>=1.4.2; sys_platform=="win32" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.