Skip to content

Commit

Permalink
Fix Python version requirement, old references
Browse files Browse the repository at this point in the history
This requires either a new release or recreation of release and PyPi
distribution, as there is a possibility that dependency resolution may
be affected.
  • Loading branch information
schivmeister committed Dec 20, 2023
1 parent 52e91b7 commit 4bac7d3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ RDF fingerprinter may be installed with pip as follows.
```
pip install rdf-fingerprinter
```
Nore that Python version 3.7 or later is required.
Note that Python version 3.8 or later is required.

# Usage

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def find_version(filename):
"Topic :: Software Development :: Libraries :: Python Modules",
"Natural Language :: English",
],
python_requires='>=3.6',
python_requires='>=3.8',
entry_points={
"console_scripts": ["fingerprint=fingerprint.entrypoints.cli.main:fingerprint_endpoint"]
}
Expand Down

0 comments on commit 4bac7d3

Please sign in to comment.