-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
set the requirement for dataclasses correctly
- Loading branch information
abhishekram
committed
Apr 12, 2020
1 parent
6885125
commit 241ca9d
Showing
4 changed files
with
6 additions
and
7 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 |
---|---|---|
@@ -1,15 +1,12 @@ | ||
import sys | ||
from setuptools import setup, find_packages | ||
|
||
install_requires = [ | ||
"asn1crypto==1.3.0", | ||
"oscrypto==1.2.0", | ||
"pyOpenSSL==19.1.0", | ||
"dataclasses==0.7;python_version=='3.6'", | ||
] | ||
|
||
if sys.version_info.minor == 6: | ||
install_requires += ["dataclasses==0.7"] | ||
|
||
tests_require = [ | ||
"pytest==5.4.1", | ||
"pytest-cov==2.8.1", | ||
|
@@ -26,7 +23,7 @@ | |
long_description="Docs for this project are maintained at " | ||
"https://github.com/abhishek-ram/pyas2-lib/blob/" | ||
"master/README.md", | ||
version="1.3.0", | ||
version="1.3.1", | ||
author="Abhishek Ram", | ||
author_email="[email protected]", | ||
packages=find_packages(where=".", exclude=("test*",)), | ||
|
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,4 +9,3 @@ envlist = py36, py37, py38 | |
[testenv] | ||
commands = {envpython} setup.py test | ||
deps = | ||
|