aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIlya Etingof <etingof@gmail.com>2019-08-01 07:47:31 +0200
committerIlya Etingof <etingof@gmail.com>2019-08-01 07:47:31 +0200
commit213c0f494b3ee7d12f82abbadfc345ca69e2432f (patch)
treef99b79f8cac95d2ebb6079ac88cd8ea86ef1fa31
parent3e2e4419553287df3f6a4071b49c6049f78be4be (diff)
downloadpyasn1-modules-213c0f494b3ee7d12f82abbadfc345ca69e2432f.tar.gz
Release 0.2.6
-rw-r--r--CHANGES.txt2
-rw-r--r--README.md17
-rw-r--r--requirements.txt4
-rw-r--r--setup.py6
4 files changed, 13 insertions, 16 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index 6d01aca..fd564f8 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -1,5 +1,5 @@
-Revision 0.2.6, released XX-07-2019
+Revision 0.2.6, released 31-07-2019
-----------------------------------
- Added RFC3560 providing RSAES-OAEP Key Transport Algorithm
diff --git a/README.md b/README.md
index a04c713..6e97d3d 100644
--- a/README.md
+++ b/README.md
@@ -7,9 +7,10 @@ ASN.1 modules for Python
[![Coverage Status](https://img.shields.io/codecov/c/github/etingof/pyasn1-modules.svg)](https://codecov.io/github/etingof/pyasn1-modules/)
[![GitHub license](https://img.shields.io/badge/license-BSD-blue.svg)](https://raw.githubusercontent.com/etingof/pyasn1-modules/master/LICENSE.txt)
-This is a small but growing collection of
+The `pyasn1-modules` package contains a collection of
[ASN.1](https://www.itu.int/rec/dologin_pub.asp?lang=e&id=T-REC-X.208-198811-W!!PDF-E&type=items)
-data structures expressed in Python terms using [pyasn1](https://github.com/etingof/pyasn1) data model.
+data structures expressed as Python classes based on [pyasn1](https://github.com/etingof/pyasn1)
+data model.
If ASN.1 module you need is not present in this collection, try using
[Asn1ate](https://github.com/kimgr/asn1ate) tool that compiles ASN.1 documents
@@ -18,13 +19,11 @@ into pyasn1 code.
Feedback
--------
-If something does not work as expected, try browsing pyasn1
-[mailing list archives](https://sourceforge.net/p/pyasn1/mailman/pyasn1-users/)
-or post your question
-[to Stack Overflow](https://stackoverflow.com/questions/ask).
-If you want to contribute ASN.1 modules you have converted into pyasn1,
-please send me a pull request.
+If something does not work as expected,
+[open an issue](https://github.com/etingof/pyasn1-modules/issues) at GitHub
+or post your question [on Stack Overflow](https://stackoverflow.com/questions/ask)
+
+New modules contributions are welcome via GitHub pull requests.
Copyright (c) 2005-2019, [Ilya Etingof](mailto:etingof@gmail.com).
All rights reserved.
-
diff --git a/requirements.txt b/requirements.txt
index 17f9fb5..cb1feb0 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -1,3 +1 @@
-#pyasn1>=0.4.1,<0.5.0
-# pull unreleased pyasn1
--e git://github.com/etingof/pyasn1.git#egg=pyasn1
+pyasn1>=0.4.6,<0.5.0
diff --git a/setup.py b/setup.py
index d67b5de..2579e1f 100644
--- a/setup.py
+++ b/setup.py
@@ -69,7 +69,7 @@ try:
params = {
'zip_safe': True,
- 'install_requires': ['pyasn1>=0.4.1,<0.5.0']
+ 'install_requires': ['pyasn1>=0.4.6,<0.5.0']
}
except ImportError:
@@ -82,7 +82,7 @@ except ImportError:
if sys.version_info[:2] > (2, 4):
params = {
- 'requires': ['pyasn1(>=0.4.1,<0.5.0)']
+ 'requires': ['pyasn1(>=0.4.6,<0.5.0)']
}
else:
params = {
@@ -100,7 +100,7 @@ params.update(
'url': 'https://github.com/etingof/pyasn1-modules',
'platforms': ['any'],
'classifiers': [x for x in classifiers.split('\n') if x],
- 'license': 'BSD',
+ 'license': 'BSD-2-Clause',
'packages': ['pyasn1_modules']}
)