-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
setup: move to support python3.12 only
* remove not used files * remove --db from run-tests.sh because it is not necessary to run the tests. only use what is necessary!
- Loading branch information
1 parent
28d5f07
commit 1a8d355
Showing
3 changed files
with
8 additions
and
26 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
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,6 +1,6 @@ | ||
# -*- coding: utf-8 -*- | ||
# | ||
# Copyright (C) 2021-2023 Graz University of Technology. | ||
# Copyright (C) 2021-2024 Graz University of Technology. | ||
# | ||
# repository-cli is free software; you can redistribute it and/or modify it | ||
# under the terms of the MIT License; see LICENSE file for more details. | ||
|
@@ -17,18 +17,16 @@ author_email = [email protected] | |
platforms = any | ||
url = https://github.com/inveniosoftware/repository-cli | ||
classifiers = | ||
Programming Language :: Python :: 3.9 | ||
Programming Language :: Python :: 3.10 | ||
Programming Language :: Python :: 3.11 | ||
Programming Language :: Python :: 3.12 | ||
Development Status :: 5 - Production/Stable | ||
|
||
[options] | ||
include_package_data = True | ||
packages = find: | ||
python_requires = >=3.9 | ||
python_requires = >=3.12 | ||
zip_safe = False | ||
install_requires = | ||
click>=7.1.1 | ||
click>=8.0.0 | ||
invenio-rdm-records[opensearch2]>=4.0.0 | ||
invenio-records-marc21>=0.9 | ||
invenio-records-lom>=0.10 | ||
|
@@ -42,9 +40,9 @@ tests = | |
invenio-app>=1.3.0 | ||
invenio-search[opensearch2]>=2.1.0 | ||
invenio-cache>=1.1.1 | ||
Sphinx>=4.5 | ||
sphinx-click>=2.5.0 | ||
ruff>=0.0.270 | ||
Sphinx>=7.0.0 | ||
sphinx-click>=6.0.0 | ||
ruff>=0.5.3 | ||
|
||
[options.entry_points] | ||
flask.commands = | ||
|
@@ -63,10 +61,6 @@ universal = 1 | |
[tool:isort] | ||
profile=black | ||
|
||
[check-manifest] | ||
ignore = | ||
*-requirements.txt | ||
|
||
[tool:pytest] | ||
addopts = --black --doctest-glob="*.rst" --doctest-modules --cov=repository_cli --cov-report=term-missing | ||
testpaths = tests repository_cli | ||
|