dbader / schedule

Python job scheduling for humans.
https://schedule.readthedocs.io/
MIT License
11.71k stars 960 forks source link

TIme zone #572

Closed kifbell closed 1 year ago

kifbell commented 1 year ago

could you please release new version as 1.1.0 itself does not support timezones

gioxc88 commented 1 year ago

same problem here why does time zone not work anymore?

HansDaigle commented 1 year ago

Install the master version:

pip uninstall schedule
pip install git+https://github.com/dbader/schedule

Or through setup.py:

from setuptools import setup

setup(name='your-project',
      version='0.0.1',
      description='Your project',
      install_requires=[
          'schedule @ git+https://github.com/dbader/schedule.git'
      ],
)
SijmenHuizenga commented 1 year ago

Sorry for the delay! Just released 1.2.0 that includes the timezone feature.