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: strategy:
max-parallel: 4 max-parallel: 4
matrix: matrix:
python-version: ['3.9', '3.10', '3.11', '3.12'] python-version: ['3.8', '3.9', '3.10', '3.11']
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3

View File

@ -3,14 +3,12 @@ version: 2
build: build:
os: ubuntu-22.04 os: ubuntu-22.04
tools: tools:
python: "3.12" python: "3.11"
jobs: jobs:
post_create_environment:
- pip install poetry
post_install: post_install:
# VIRTUAL_ENV needs to be set manually for now. - pip install poetry
# See https://github.com/readthedocs/readthedocs.org/pull/11152/ - poetry config virtualenvs.create false
- VIRTUAL_ENV=$READTHEDOCS_VIRTUALENV_PATH poetry install --with docs - poetry install --with=docs
sphinx: sphinx:
configuration: docs/source/conf.py 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 = [ classifiers = [
'License :: OSI Approved :: MIT License', 'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent', 'Operating System :: OS Independent',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10', 'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11', 'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
] ]
[tool.poetry.dependencies] [tool.poetry.dependencies]
python = "^3.9" python = "^3.8"
google-auth = "2.28.1" google-auth = "2.28.1"
google-api-python-client = "2.120.0" google-api-python-client = "2.120.0"
icalendar = "5.0.11" icalendar = "5.0.11"