Skip to content

Commit

Permalink
Update for next PyPI release.
Browse files Browse the repository at this point in the history
Removal of 3.3, and addition of 3.8 to CI platforms.
  • Loading branch information
da4089 committed Feb 19, 2020
1 parent 9954b48 commit 8d2d429
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
6 changes: 3 additions & 3 deletions NOTES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ Running the Unit Tests
In my development environment, I have three venvs: 2.7, 3.3 and 3.6. I run
the tests in each of these environments before committing changes.

Once committed, TravisCI runs the tests in 2.7, 3.3, 3.4, 3.5 and 3.6. It will
build pull-request branches also. Travis will email your commit address the
results of its build.
Once committed, TravisCI runs the tests in 2.7, 3.4, 3.5, 3.6, 3.7 and 3.8.
It will build pull-request branches also. Travis will email your commit
address the results of its build.

To run tests from a local shell, I use:

Expand Down
7 changes: 3 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#! /usr/bin/env python
########################################################################
# SimpleFIX
# Copyright (C) 2016-2018, David Arnold.
# Copyright (C) 2016-2020, David Arnold.
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
Expand Down Expand Up @@ -30,7 +30,7 @@
long_description = readme.read()

setup(name="simplefix",
version="1.0.12",
version="1.0.13",
description="Simple FIX Protocol implementation for Python",
long_description=long_description,
url="https://github.com/da4089/simplefix",
Expand All @@ -46,13 +46,12 @@
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'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',
],
)

Expand Down

0 comments on commit 8d2d429

Please sign in to comment.