Skip to content

Commit a8663b0

Browse files
committed
Drop testing for Python 3.6
As a package making extensive use of rdflib, the upstream support matrix nudges this project out of being able to test for Python 3.6. From the rdflib contribution guide as of today (possibly as of July): https://rdflib.readthedocs.io/en/stable/developers.html > RDFLib 5.0.0 maintained compatibility with python versions 2.7, 3.4, 3.5, 3.6, 3.7. > The latest 6.0.0 release and subsequent will only support Python 3.7 and newer. Signed-off-by: Alex Nelson <alexander.nelson@nist.gov>
1 parent fd9d861 commit a8663b0

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ 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

setup.cfg

Lines changed: 2 additions & 3 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
2423
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 =

0 commit comments

Comments
 (0)