File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 5959
6060 - name : Verify that the `release_version` is larger/newer than the existing release in PyPI
6161 run : |
62- python -c 'import sys; from packaging import version; code = 0 if version.parse("${{ env.ciso8601_version }}") < version.parse("${{ env.release_version }}") else 1; sys.exit(code)'
62+ python -c 'import sys; from packaging import version; code = 0 if version.parse("${{ env.pypi_version }}") < version.parse("${{ env.release_version }}") else 1; sys.exit(code)'
6363
6464 - name : Verify that the `release_version` is present in the CHANGELOG
6565 # TODO: Use something like `changelog-cli` to extract the correct version number
7171 echo -e "release_version=${{ env.release_version }}\nrelease_tag=${{ env.release_tag }}" > release_values.txt
7272
7373 - name : Share normalized release values
74- uses : actions/upload-artifact@v2
74+ uses : actions/upload-artifact@v3
7575 with :
7676 name : release_values
7777 path : release_values.txt
9393 CIBW_SKIP : " pp*-macosx* *-win32 *-manylinux_i686"
9494 CIBW_ARCHS_MACOS : x86_64 arm64 universal2
9595
96- - uses : actions/upload-artifact@v2
96+ - uses : actions/upload-artifact@v3
9797 with :
9898 path : ./wheelhouse/*.whl
9999
@@ -112,7 +112,7 @@ jobs:
112112 - name : Build sdist
113113 run : python setup.py sdist
114114
115- - uses : actions/upload-artifact@v2
115+ - uses : actions/upload-artifact@v3
116116 with :
117117 path : dist/*.tar.gz
118118
@@ -163,4 +163,4 @@ jobs:
163163 # runs-on: ubuntu-latest
164164 # steps: # TODO
165165 # - run: |
166- # echo "We're doing a release!? ${{ github.event }}"
166+ # echo "We're doing a release!? ${{ github.event }}"
Original file line number Diff line number Diff line change 22
33- [ Unreleased] ( #unreleased )
44- [ 2.x.x] ( #2xx )
5+ - [ Version 2.3.0] ( #version-230 )
56 - [ Version 2.2.0] ( #version-220 )
67 - [ Version 2.1.3] ( #version-213 )
78 - [ Version 2.1.2] ( #version-212 )
2021
2122# Unreleased
2223
24+ *
25+
26+ # 2.x.x
27+
28+ ## Version 2.3.0
29+
30+ * Added Python 3.11 support
2331* Fix the build for PyPy2 ([ #116 ] ( https://github.com/closeio/ciso8601/pull/116 ) )
2432* Added missing ` fromutc ` implementation for ` FixedOffset ` (#113 ). Thanks @davidkraljic
2533* Removed improper ability to call ` FixedOffset ` 's ` dst ` , ` tzname ` and ` utcoffset ` without arguments
2836* Added support for ISO week dates, ([ #139 ] ( https://github.com/closeio/ciso8601/pull/139 ) )
2937* Added support for ordinal dates, ([ #140 ] ( https://github.com/closeio/ciso8601/pull/140 ) )
3038
31- # 2.x.x
32-
3339## Version 2.2.0
3440
3541* Added Python 3.9 support
Original file line number Diff line number Diff line change 3131 os .environ ["_CL_" ] = ""
3232 os .environ ["_CL_" ] += " /WX"
3333
34- VERSION = "2.2 .0"
34+ VERSION = "2.3 .0"
3535CISO8601_CACHING_ENABLED = int (os .environ .get ('CISO8601_CACHING_ENABLED' , '1' ) == '1' )
3636
3737setup (
You can’t perform that action at this time.
0 commit comments