aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAliaksei Urbanski <mimworkmail@gmail.com>2019-10-17 07:57:05 +0300
committerIlya Etingof <etingof@gmail.com>2019-10-17 06:57:05 +0200
commita9139ec7641167d88c8ac418c3ec8bc5c407d588 (patch)
treeab28b161b0611ef06d0a1e662ad52cc6721734e2
parent7fafbf8550ab9e8727274903ed96ae849cd24594 (diff)
downloadpyasn1-modules-a9139ec7641167d88c8ac418c3ec8bc5c407d588.tar.gz
Declare support for Python 3.8 (#86)
Python 3.8 is there, so I believe that it would be nice to declare support and add tests for it on CI. Python 3.8.0 release announcement: https://discuss.python.org/t/python-3-8-0-is-now-available/2478 These changes also: - add .venv/ to .gitignore
-rw-r--r--.gitignore3
-rw-r--r--.travis.yml3
-rw-r--r--setup.py1
3 files changed, 7 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index 380d0ff..4654707 100644
--- a/.gitignore
+++ b/.gitignore
@@ -4,6 +4,9 @@ __pycache__
# vim swapfiles
*.sw?
+# virtual environment
+.venv/
+
# python packaging
MANIFEST
dist/
diff --git a/.travis.yml b/.travis.yml
index 07294be..94d7ad5 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -28,6 +28,9 @@ matrix:
dist: xenial
python: '3.7'
- os: linux
+ dist: bionic
+ python: '3.8'
+ - os: linux
dist: trusty
python: 'nightly'
- os: linux
diff --git a/setup.py b/setup.py
index 2579e1f..7a0ecd0 100644
--- a/setup.py
+++ b/setup.py
@@ -40,6 +40,7 @@ Programming Language :: Python :: 3.4
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
+Programming Language :: Python :: 3.8
Topic :: Communications
Topic :: System :: Monitoring
Topic :: System :: Networking :: Monitoring