Skip to content

Commit 7d8f676

Browse files
Merge pull request #13 from casework/release-0.2.1
Release 0.2.1
2 parents 22564ae + ddcf0c7 commit 7d8f676

File tree

5 files changed

+7
-13
lines changed

5 files changed

+7
-13
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,18 +23,14 @@ jobs:
2323
runs-on: ubuntu-latest
2424
strategy:
2525
matrix:
26-
python-version: [ 3.6, 3.8 ]
26+
python-version: [ 3.7, 3.8 ]
2727

2828
steps:
2929
- uses: actions/checkout@v2
3030
- name: Set up Python ${{ matrix.python-version }}
3131
uses: actions/setup-python@v2
3232
with:
3333
python-version: ${{ matrix.python-version }}
34-
- name: Install Python virtualenv for Github runner
35-
run: |
36-
python -m pip install --upgrade pip
37-
pip install virtualenv
3834
- name: Start from clean state
3935
run: make clean
4036
- name: Run tests

case_utils/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
#
1212
# We would appreciate acknowledgement if the software is used.
1313

14-
__version__ = "0.2.0"
14+
__version__ = "0.2.1"
1515

1616
import rdflib.util
1717

setup.cfg

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,13 @@ classifiers =
1818
# TODO The constraint on pyparsing can be removed when rdflib Issue #1190 is resolved.
1919
# https://github.com/RDFLib/rdflib/issues/1190
2020
install_requires =
21-
# Note that numpy (pandas dependency) is only supported in Python >= 3.7.
22-
pandas;python_version>='3.7'
21+
pandas
2322
pyparsing < 3.0.0
24-
rdflib-jsonld
23+
rdflib >= 6.0.0
2524
requests
2625
tabulate
2726
packages = find:
28-
python_requires = >=3.6
27+
python_requires = >=3.7
2928

3029
[options.entry_points]
3130
console_scripts =

tests/Makefile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,7 @@ all: \
4141
$(top_srcdir)/setup.py \
4242
requirements.txt
4343
rm -rf venv
44-
$(PYTHON3) -m virtualenv \
45-
--python=$(PYTHON3) \
44+
$(PYTHON3) -m venv \
4645
venv
4746
source venv/bin/activate \
4847
&& pip install \

0 commit comments

Comments
 (0)