Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ 3.7, 3.8, 3.9, "3.10" ]
python-version: [ 3.7, 3.8, 3.9, "3.10", "3.11", "3.12" ]

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 2 additions & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ Egon Willighagen <egon.willighagen@gmail.com>
Harold Solbrig <hsolbri1@MacBook-Pro.local>
Harold Solbrig <solbrig@earthlink.net>
Harold Solbrig <solbrig@jhu.edu>
Josh Moore <josh@openmicroscopy.org>
Yaroslav Halchenko <debian@onerussian.com>
andrawaag <andra@micelio.be>
hsolbrig <solbrig.harold@mayo.edu>
hsolbrig <solbrig@earthlink.net>
Expand Down
15 changes: 15 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,6 +1,21 @@
CHANGES
=======

* Allow pytest for tox
* running tests (tox) updated CHANGES
* Running tests (tox) added me (Yaroslav Halchenko) and Josh Moore into AUTHORS, thanks
* Fix tox.ini envlist needing "," as separator
* Add testing/declare 3.11 and 3.12 as supported
* Declare 3.9 and 3.10 as supported since tested against already
* Enable codecov

v0.8.1
------

* Fix lru\_cache option
* Remove the separate pr-test file. The main catches it
* Update requirements file
* Fix for issue #81
* Replace '/' with '\'

v0.8.0
Expand Down
4 changes: 4 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@ classifiers =
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
keywords =
ShEx
rdf
Expand Down
4 changes: 3 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
[tox]
envlist = py37 py38 py39 py310
envlist = py37,py38,py39,py310,py311,py312

[testenv]
deps=unittest2
whitelist_externals = python
allowlist_externals =
pytest
setenv =
IN_TOX = true
SKIP_EXTERNAL_URLS = true
Expand Down