File tree Expand file tree Collapse file tree 3 files changed +14
-8
lines changed Expand file tree Collapse file tree 3 files changed +14
-8
lines changed Original file line number Diff line number Diff line change 59
59
60
60
- name : Verify that the `release_version` is larger/newer than the existing release in PyPI
61
61
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)'
63
63
64
64
- name : Verify that the `release_version` is present in the CHANGELOG
65
65
# TODO: Use something like `changelog-cli` to extract the correct version number
71
71
echo -e "release_version=${{ env.release_version }}\nrelease_tag=${{ env.release_tag }}" > release_values.txt
72
72
73
73
- name : Share normalized release values
74
- uses : actions/upload-artifact@v2
74
+ uses : actions/upload-artifact@v3
75
75
with :
76
76
name : release_values
77
77
path : release_values.txt
93
93
CIBW_SKIP : " pp*-macosx* *-win32 *-manylinux_i686"
94
94
CIBW_ARCHS_MACOS : x86_64 arm64 universal2
95
95
96
- - uses : actions/upload-artifact@v2
96
+ - uses : actions/upload-artifact@v3
97
97
with :
98
98
path : ./wheelhouse/*.whl
99
99
@@ -112,7 +112,7 @@ jobs:
112
112
- name : Build sdist
113
113
run : python setup.py sdist
114
114
115
- - uses : actions/upload-artifact@v2
115
+ - uses : actions/upload-artifact@v3
116
116
with :
117
117
path : dist/*.tar.gz
118
118
@@ -163,4 +163,4 @@ jobs:
163
163
# runs-on: ubuntu-latest
164
164
# steps: # TODO
165
165
# - 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 2
2
3
3
- [ Unreleased] ( #unreleased )
4
4
- [ 2.x.x] ( #2xx )
5
+ - [ Version 2.3.0] ( #version-230 )
5
6
- [ Version 2.2.0] ( #version-220 )
6
7
- [ Version 2.1.3] ( #version-213 )
7
8
- [ Version 2.1.2] ( #version-212 )
20
21
21
22
# Unreleased
22
23
24
+ *
25
+
26
+ # 2.x.x
27
+
28
+ ## Version 2.3.0
29
+
30
+ * Added Python 3.11 support
23
31
* Fix the build for PyPy2 ([ #116 ] ( https://github.com/closeio/ciso8601/pull/116 ) )
24
32
* Added missing ` fromutc ` implementation for ` FixedOffset ` (#113 ). Thanks @davidkraljic
25
33
* Removed improper ability to call ` FixedOffset ` 's ` dst ` , ` tzname ` and ` utcoffset ` without arguments
28
36
* Added support for ISO week dates, ([ #139 ] ( https://github.com/closeio/ciso8601/pull/139 ) )
29
37
* Added support for ordinal dates, ([ #140 ] ( https://github.com/closeio/ciso8601/pull/140 ) )
30
38
31
- # 2.x.x
32
-
33
39
## Version 2.2.0
34
40
35
41
* Added Python 3.9 support
Original file line number Diff line number Diff line change 31
31
os .environ ["_CL_" ] = ""
32
32
os .environ ["_CL_" ] += " /WX"
33
33
34
- VERSION = "2.2 .0"
34
+ VERSION = "2.3 .0"
35
35
CISO8601_CACHING_ENABLED = int (os .environ .get ('CISO8601_CACHING_ENABLED' , '1' ) == '1' )
36
36
37
37
setup (
You can’t perform that action at this time.
0 commit comments