Skip to content

Commit

Permalink
Merge pull request #66 from russhousley/require-maint-pyasn1
Browse files Browse the repository at this point in the history
Require maint pyasn1
  • Loading branch information
russhousley authored Sep 2, 2024
2 parents ed70789 + 221210d commit b3150d5
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
3 changes: 2 additions & 1 deletion CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
Revision 0.4.5, released 28-08-2024
Revision 0.4.5, released 02-09-2024
-----------------------------------
- Require pyasn1 0.5.0 to force people to the maintained version
- Dropped support for EOL Python 2.7, 3.6, and 3.7
- Added RFC9598 for Internationalized Email Addresses in X.509 Certificates
- Added RFC9582 for RPKI Route Origin Authorizations (ROAs)
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
pyasn1>=0.4.7
pyasn1>=0.5.0
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bdist_wheel]
universal = 1
[sdist]
formats = zip

[metadata]
license_file = LICENSE.txt
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def howto_install_setuptools():

params = {
'zip_safe': True,
'install_requires': ['pyasn1>=0.4.7']
'install_requires': ['pyasn1>=0.5.0']
}

except ImportError:
Expand All @@ -70,7 +70,7 @@ def howto_install_setuptools():
from distutils.core import setup, Command

params = {
'requires': ['pyasn1>=0.4.7']
'requires': ['pyasn1>=0.5.0']
}

params.update(
Expand Down

0 comments on commit b3150d5

Please sign in to comment.