Skip to content

Commit

Permalink
doc; build sub; test cases for python +3.11 -3.10
Browse files Browse the repository at this point in the history
  • Loading branch information
plandes committed Dec 5, 2023
1 parent 4725873 commit 2fe6ba6
Show file tree
Hide file tree
Showing 6 changed files with 27 additions and 18 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.9', '3.10']
python-version: ['3.10', '3.11']
steps:
- name: Checkout reposistory
uses: actions/checkout@v3
Expand All @@ -34,3 +34,5 @@ jobs:

- name: Run tests
run: 'make test'
env:
NO_TEST_MULTI_PROC_PIDS: 1
14 changes: 13 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,17 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
## [Unreleased]


## [0.4.0] - 2023-12-05
### Changed
- Upgrade to [zensols.util] version 1.14.

### Added
- Support for Python 3.11.

### Removed
- Support for Python 3.9.


## [0.3.0] - 2023-08-16
### Changed
- Updated [zensols.util] to 1.13.0.
Expand Down Expand Up @@ -119,7 +130,8 @@ Stable release.
- Initial version


[Unreleased]: https://github.com/plandes/grsync/compare/v0.3.0...HEAD
[Unreleased]: https://github.com/plandes/grsync/compare/v0.4.0...HEAD
[0.4.0]: https://github.com/plandes/grsync/compare/v0.3.0...v0.4.0
[0.3.0]: https://github.com/plandes/grsync/compare/v0.2.0...v0.3.0
[0.2.0]: https://github.com/plandes/grsync/compare/v0.1.0...v0.2.0
[0.1.0]: https://github.com/plandes/grsync/compare/v0.0.17...v0.1.0
Expand Down
2 changes: 1 addition & 1 deletion LICENSE.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

MIT License

Copyright (c) 2018 Paul Landes
Copyright (c) 2018 - 2023 Paul Landes

Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
Expand Down
21 changes: 8 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# GRSync: Persist create build out environments

[![PyPI][pypi-badge]][pypi-link]
[![Python 3.9][python39-badge]][python39-link]
[![Python 3.10][python310-badge]][python310-link]
[![Python 3.11][python311-badge]][python311-link]
[![Build Status][build-badge]][build-link]

This program captures your home directory and synchronize it with another host
Expand Down Expand Up @@ -104,20 +104,15 @@ allows this. However, for now, you must include both the link and the data it
points to get this integrity.


## Requirements

* At least [Python 3.9]
* A system that supports [PyYAML]


## Planned Future Features
## Changelog

Preserve and restore file and directory timestamps.
An extensive changelog is available [here](CHANGELOG.md).


## Changelog
## Community

An extensive changelog is available [here](CHANGELOG.md).
Please star this repository and let me know how and where you use this API.
Contributions as pull requests, feedback and any input is welcome.


## License
Expand All @@ -131,10 +126,10 @@ Copyright (c) 2020 - 2023 Paul Landes
[pypi]: https://pypi.org/project/zensols.grsync/
[pypi-link]: https://pypi.python.org/pypi/zensols.grsync
[pypi-badge]: https://img.shields.io/pypi/v/zensols.grsync.svg
[python39-badge]: https://img.shields.io/badge/python-3.9-blue.svg
[python39-link]: https://www.python.org/downloads/release/python-390
[python310-badge]: https://img.shields.io/badge/python-3.10-blue.svg
[python310-link]: https://www.python.org/downloads/release/python-3100
[python311-badge]: https://img.shields.io/badge/python-3.11-blue.svg
[python311-link]: https://www.python.org/downloads/release/python-3110
[build-badge]: https://github.com/plandes/grsync/workflows/CI/badge.svg
[build-link]: https://github.com/plandes/grsync/actions

Expand Down
2 changes: 1 addition & 1 deletion src/python/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
GitPython~=3.1.29
gitdb2~=2.0.3
zensols.util~=1.13.0
zensols.util~=1.14.0

0 comments on commit 2fe6ba6

Please sign in to comment.