Skip to content

Commit

Permalink
Release 1.2.2 (#625)
Browse files Browse the repository at this point in the history
  • Loading branch information
SijmenHuizenga authored May 25, 2024
1 parent 2dcb583 commit 82a43db
Show file tree
Hide file tree
Showing 7 changed files with 43 additions and 7 deletions.
2 changes: 1 addition & 1 deletion AUTHORS.rst
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,4 @@ Thanks to all the wonderful folks who have contributed to schedule over the year
- sunpro108 <https://github.com/sunpro108>
- kurtasov <https://github.com/kurtasov>
- AnezeR <https://github.com/AnezeR>

- a-detiste <https://github.com/a-detiste>
8 changes: 8 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
History
-------

1.2.2 (2024-05-25)
++++++++++++++++++

- Fix bugs in cross-timezone scheduling (#601, #602, #604, #623)
- Add support for python 3.12 (#606)
- Remove dependency on old mock (#622) Thanks @a-detiste!


1.2.1 (2023-11-01)
++++++++++++++++++

Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,9 @@
# built documents.
#
# The short X.Y version.
version = u"1.2.1"
version = u"1.2.2"
# The full version, including alpha/beta/rc tags.
release = u"1.2.1"
release = u"1.2.2"

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
7 changes: 5 additions & 2 deletions docs/development.rst
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,10 @@ Merge these changes into master. Finally:
git push --tags
pip install --upgrade setuptools twine wheel
python setup.py sdist bdist_wheel --universal
python3 -m build --wheel
# For https://test.pypi.org/project/schedule/
twine upload --repository schedule-test dist/*
# For https://pypi.org/project/schedule/
twine upload --repository schedule dist/*
This project follows `semantic versioning <https://semver.org/>`_.`
This project follows `semantic versioning <https://semver.org/>`_.`
26 changes: 26 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"

[project]
name = "schedule"
description = "Job scheduling for humans."
dynamic = ["version", "classifiers", "keywords", "authors"]
readme = "README.rst"
license = {text = "MIT License"}

requires-python = ">= 3.7"
dependencies = []

maintainers = [
{name = "Sijmen Huizenga"}
]

[project.optional-dependencies]
timezone = ["pytz"]

[project.urls]
Documentation = "https://schedule.readthedocs.io"
Repository = "https://github.com/dbader/schedule.git"
Issues = "https://github.com/dbader/schedule/issues"
Changelog = "https://github.com/dbader/schedule/blob/master/HISTORY.rst"
1 change: 0 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
[mypy]
files=schedule
ignore_missing_imports = True
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from setuptools import setup


SCHEDULE_VERSION = "1.2.1"
SCHEDULE_VERSION = "1.2.2"
SCHEDULE_DOWNLOAD_URL = "https://github.com/dbader/schedule/tarball/" + SCHEDULE_VERSION


Expand Down

0 comments on commit 82a43db

Please sign in to comment.