forked from Nextdoor/ndscheduler
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8 from palto42/develop
Version 0.6.1
- Loading branch information
Showing
16 changed files
with
154 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,6 +12,7 @@ python: | |
# - "3.5" | ||
- "3.6" | ||
- "3.7" | ||
- "3.8" | ||
|
||
install: | ||
- make init | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
__version__ = "0.6.0" # http://semver.org/ | ||
__version__ = "0.6.1" # http://semver.org/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,7 +12,7 @@ | |
|
||
multiprocessing | ||
|
||
PACKAGE = "ndscheduler" | ||
PACKAGE = "ndscheduler-fork" | ||
__version__ = None | ||
|
||
exec(open(os.path.join("ndscheduler", "version.py")).read()) # set __version__ | ||
|
@@ -61,10 +61,10 @@ def maybe_rm(path): | |
version=__version__, | ||
description="ndscheduler: A cron-replacement library from Nextdoor", | ||
long_description=open("README.md").read(), | ||
author="Nextdoor Engineering", | ||
author_email="[email protected]", | ||
url="https://github.com/Nextdoor/ndscheduler", | ||
license="Apache License, Version 2", | ||
author="Matthias Homann (original: Nextdoor Engineering)", | ||
author_email="[email protected]", | ||
url="https://github.com/palto42/ndscheduler", | ||
license="BSD 2-Clause 'Simplified' License", | ||
keywords="scheduler nextdoor cron python", | ||
packages=find_packages(), | ||
include_package_data=True, | ||
|
@@ -79,6 +79,8 @@ def maybe_rm(path): | |
"python-dateutil >= 2.2", | ||
"bcrypt >= 3.1.7", # for user authentication | ||
"confuse >= 1.1.0", # for yaml config support | ||
# python-ldap is only required if LDAP authentication is used | ||
# "python-ldap >= 3.3.1", | ||
], | ||
classifiers=classifiers, | ||
cmdclass={"clean": CleanHook}, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
mock==1.1.2 | ||
construct>=2.10 | ||
python-ldap >= "3.3.1" |