1
0
mirror of https://github.com/b4tman/sync_ics2gcal synced 2024-10-23 23:35:07 +00:00

Compare commits

..

No commits in common. "f945cdc9155ac257bc064cc2827a70abb0b71268" and "95208568cb6c769cbffee396bf68094025406ee7" have entirely different histories.

4 changed files with 1427 additions and 1408 deletions

View File

@ -17,7 +17,7 @@ jobs:
strategy:
max-parallel: 4
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12']
python-version: ['3.8', '3.9', '3.10', '3.11']
steps:
- uses: actions/checkout@v3

View File

@ -3,14 +3,12 @@ version: 2
build:
os: ubuntu-22.04
tools:
python: "3.12"
python: "3.11"
jobs:
post_create_environment:
- pip install poetry
post_install:
# VIRTUAL_ENV needs to be set manually for now.
# See https://github.com/readthedocs/readthedocs.org/pull/11152/
- VIRTUAL_ENV=$READTHEDOCS_VIRTUALENV_PATH poetry install --with docs
- pip install poetry
- poetry config virtualenvs.create false
- poetry install --with=docs
sphinx:
configuration: docs/source/conf.py

715
poetry.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -11,14 +11,14 @@ keywords = ["icalendar", "sync", "google", "calendar"]
classifiers = [
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
]
[tool.poetry.dependencies]
python = "^3.9"
python = "^3.8"
google-auth = "2.28.1"
google-api-python-client = "2.120.0"
icalendar = "5.0.11"