-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Remove py27 toxenv * Remove 2.7 classifier and bump version * Upgrade dependencies * Update debian dependencies * Add upgrade tools to pre-commit configuration * Run pre-commit
- Loading branch information
1 parent
db39224
commit 4786aa1
Showing
15 changed files
with
67 additions
and
58 deletions.
There are no files selected for viewing
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
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 |
---|---|---|
|
@@ -3,17 +3,16 @@ Section: utils | |
Priority: extra | ||
Maintainer: Artefactual Systems Inc. <[email protected]> | ||
Build-Depends: | ||
python (>= 2.7.3), | ||
debhelper (>= 9), | ||
python-dev, | ||
python3.6-dev, | ||
ruby-ronn, | ||
dh-virtualenv | ||
Standards-Version: 3.9.3 | ||
X-Python-Version: 2.7 | ||
X-Python-Version: 3.6 | ||
|
||
Package: fixity | ||
Architecture: i386 amd64 | ||
Depends: python (>= 2.7.3), ${python:Depends}, ${misc:Depends}, sqlite3 | ||
Depends: python3, ${python3:Depends}, ${misc:Depends}, sqlite3 | ||
Description: Commandline tool to check fixity of AIPs stored in | ||
an Archivematica Storage Service installation. | ||
Homepage: http://archivematica.org |
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
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
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,2 +1,2 @@ | ||
requests==2.2.1 | ||
SQLAlchemy==0.9.4 | ||
requests==2.27.1 | ||
SQLAlchemy==1.4.48 |
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,5 +1,4 @@ | ||
-r base.txt | ||
ipython==2.0.0 | ||
pytest==4.6.5 | ||
pytest-cov==2.11.1 | ||
vcrpy==1.0.0 | ||
pytest==7.0.1 | ||
pytest-cov==4.0.0 | ||
vcrpy==4.1.1 |
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 |
---|---|---|
|
@@ -2,21 +2,19 @@ | |
|
||
setup( | ||
name="fixity", | ||
version="0.4.0", | ||
version="0.5.0", | ||
packages=["fixity"], | ||
url="https://github.com/artefactual/fixity", | ||
author="Artefactual Systems", | ||
author_email="[email protected]", | ||
entry_points={"console_scripts": ["fixity = fixity.fixity:main"]}, | ||
classifiers=[ | ||
"License :: OSI Approved :: GNU Affero General Public License v3", | ||
"Programming Language :: Python :: 2", | ||
"Programming Language :: Python :: 2.7", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.6", | ||
"Programming Language :: Python :: 3.7", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
], | ||
python_requires=">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*", | ||
python_requires=">=3.6", | ||
) |
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
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