-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* remove py2 in travis and tox * remove extra requirements for py2 * remove functools32 import * pyupgrade py files * remove six * recompile dependencies with python3.5 * remove python2 pins in dev-requirements.in
- Loading branch information
Showing
9 changed files
with
22 additions
and
66 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,6 @@ language: python | |
dist: focal | ||
|
||
python: | ||
- 2.7 | ||
- 3.5 | ||
- 3.6.8 | ||
- 3.7 | ||
|
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,16 +1,17 @@ | ||
# | ||
# This file is autogenerated by pip-compile with python 3.9 | ||
# This file is autogenerated by pip-compile | ||
# To update, run: | ||
# | ||
# pip-compile | ||
# | ||
|
||
attrs==21.2.0 | ||
# via jsonschema | ||
decorator==4.4.2 | ||
# via gdcdatamodel (setup.py) | ||
gdc-ng-models @ git+https://github.com/NCI-GDC/[email protected] | ||
git+https://github.com/NCI-GDC/[email protected]#egg=gdc-ng-models | ||
# via gdcdatamodel (setup.py) | ||
gdcdictionary @ git+https://github.com/NCI-GDC/[email protected] | ||
git+https://github.com/NCI-GDC/[email protected]#egg=gdcdictionary | ||
# via gdcdatamodel (setup.py) | ||
graphviz==0.14.2 | ||
# via gdcdatamodel (setup.py) | ||
|
@@ -20,7 +21,7 @@ jsonschema==3.2.0 | |
# via | ||
# gdcdatamodel (setup.py) | ||
# gdcdictionary | ||
psqlgraph @ git+https://github.com/NCI-GDC/[email protected] | ||
git+https://github.com/NCI-GDC/[email protected]#egg=psqlgraph | ||
# via gdcdatamodel (setup.py) | ||
psycopg2==2.8.6 | ||
# via psqlgraph | ||
|
@@ -36,7 +37,6 @@ rstr==2.2.6 | |
# via psqlgraph | ||
six==1.15.0 | ||
# via | ||
# gdcdatamodel (setup.py) | ||
# jsonschema | ||
# psqlgraph | ||
# pyrsistent | ||
|
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 |
---|---|---|
|
@@ -9,7 +9,6 @@ | |
setup_requires=["setuptools_scm<6"], | ||
packages=find_packages(), | ||
install_requires=[ | ||
"six~=1.15", | ||
"pytz~=2020.1", | ||
"graphviz>=0.4.10,<0.17", | ||
"jsonschema~=3.2", | ||
|
@@ -19,12 +18,6 @@ | |
"gdc-ng-models @ git+https://github.com/NCI-GDC/[email protected]#egg=gdc-ng-models", | ||
"psqlgraph @ git+https://github.com/NCI-GDC/[email protected]#egg=psqlgraph", | ||
], | ||
extras_require={ | ||
'python_version == "2.7"': [ | ||
"futures~=3.3", | ||
"functools32~=3.2", | ||
] | ||
}, | ||
package_data={ | ||
"gdcdatamodel": [ | ||
"xml_mappings/*.yaml", | ||
|
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,5 @@ | ||
[tox] | ||
envlist = py27,py35,py36,py37,py38 | ||
envlist = py35,py36,py37,py38 | ||
|
||
[pytest] | ||
testpaths = | ||
|