Skip to content

Commit db48bd0

Browse files
authored
Merge pull request #9 from EasyPost/specify_packages
manually specify packages= in setup.py; move source to directory; bump to v1.2.3
2 parents a88ef20 + bd9691a commit db48bd0

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-6
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: install flake8
1818
run: "python -m pip install flake8"
1919
- name: lint with flake8
20-
run: flake8 syslog_rfc5424_formatter.py tests/
20+
run: flake8 syslog_rfc5424_formatter/ tests/
2121
run-tests:
2222
runs-on: ubuntu-latest
2323
strategy:

CHANGES.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1-
NEXT
1+
1.2.3
22
----
33
- Drop support for Python 3.3, 3.4, and 3.5
44
- Move CI from Travis to Github Actions
5+
- Improve packaging
56

67
1.2.2
78
-----

setup.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setup(
77
name="syslog-rfc5424-formatter",
8-
version="1.2.2",
8+
version="1.2.3",
99
author="EasyPost",
1010
author_email="[email protected]",
1111
url="https://github.com/easypost/syslog-rfc5424-formatter",
@@ -20,15 +20,16 @@
2020
long_description=open('README.md', 'r').read(),
2121
long_description_content_type='text/markdown',
2222
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, <4',
23+
packages=['syslog_rfc5424_formatter'],
2324
classifiers=[
2425
"Development Status :: 3 - Alpha",
2526
"Environment :: Console",
2627
"Programming Language :: Python",
2728
"Programming Language :: Python :: 2.7",
28-
"Programming Language :: Python :: 3.4",
29-
"Programming Language :: Python :: 3.5",
3029
"Programming Language :: Python :: 3.6",
3130
"Programming Language :: Python :: 3.7",
31+
"Programming Language :: Python :: 3.8",
32+
"Programming Language :: Python :: 3.9",
3233
"Operating System :: POSIX",
3334
"Intended Audience :: Developers",
3435
"License :: OSI Approved :: ISC License (ISCL)",

syslog_rfc5424_formatter.py renamed to syslog_rfc5424_formatter/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import datetime
55
import re
66

7-
version_info = (1, 2, 2)
7+
version_info = (1, 2, 3)
88
__version__ = '.'.join(str(s) for s in version_info)
99
__author__ = 'EasyPost <[email protected]>'
1010

0 commit comments

Comments
 (0)