Skip to content

Commit

Permalink
Attempt to modernise CI. Note non-maintained.
Browse files Browse the repository at this point in the history
  • Loading branch information
mmulqueen committed Sep 6, 2024
1 parent 3d2832a commit 474bdd1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v4
Expand Down
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
odswriter
=========

**Consider alternatives:** This library is no longer actively maintained.

A pure-Python module for writing OpenDocument spreadsheets (similar to csv.writer).

Features
Expand All @@ -9,7 +11,8 @@ Features
- Automatically converts Python types into OpenDocument equivalents
- Includes support for datetime, date and time types
- Includes support for Decimal type
- Compatible with Python 2.7 and 3.3 (and probably others)
- Tested on Python 3.7, 3.8, 3.9, 3.10, 3.11, 3.12.
- Probably still compatible with Python 2.7 and 3.3, but no longer tested.
- Support for writing formulae (but not evaluating their results)

License
Expand Down Expand Up @@ -46,8 +49,7 @@ with ods.writer(open("test-multi.ods","wb")) as odsfile:

Compatibility
-------------
Odswriter is tested (see Travis CI) for compatibility with LibreOffice and Gnumeric. Compatibility with OpenOffice
should be good.
Odswriter is tested for compatibility with LibreOffice and Gnumeric.

jOpenDocument is not compatible out-of-the-box, but by specifying the number of columns (odswriter will pad with empty
cells up to that number) it can be made compatible. Code example:
Expand Down

0 comments on commit 474bdd1

Please sign in to comment.