Skip to content

Commit f3ed08d

Browse files
Merge remote-tracking branch 'upstream/main' into bisect
2 parents d8d78a5 + a335bf5 commit f3ed08d

File tree

3 files changed

+2
-14
lines changed

3 files changed

+2
-14
lines changed

.github/workflows/posix.yml

-13
Original file line numberDiff line numberDiff line change
@@ -155,24 +155,11 @@ jobs:
155155
channel-priority: flexible
156156
environment-file: ${{ env.ENV_FILE }}
157157
use-only-tar-bz2: true
158-
if: ${{ env.IS_PYPY == 'false' }} # No pypy3.8 support
159158

160159
- name: Upgrade Arrow version
161160
run: conda install -n pandas-dev -c conda-forge --no-update-deps pyarrow=${{ matrix.pyarrow_version }}
162161
if: ${{ matrix.pyarrow_version }}
163162

164-
- name: Setup PyPy
165-
uses: actions/setup-python@v3
166-
with:
167-
python-version: "pypy-3.8"
168-
if: ${{ env.IS_PYPY == 'true' }}
169-
170-
- name: Setup PyPy dependencies
171-
run: |
172-
# TODO: re-enable cov, its slowing the tests down though
173-
pip install Cython numpy python-dateutil pytz pytest>=6.0 pytest-xdist>=1.31.0 pytest-asyncio>=0.17 hypothesis>=5.5.3
174-
if: ${{ env.IS_PYPY == 'true' }}
175-
176163
- name: Build Pandas
177164
uses: ./.github/actions/build_pandas
178165

ci/deps/actions-pypy-38.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ dependencies:
1111
- cython>=0.29.24
1212
- pytest>=6.0
1313
- pytest-cov
14+
- pytest-asyncio
1415
- pytest-xdist>=1.31
1516
- hypothesis>=5.5.3
1617

pandas/_libs/tslibs/period.pyx

+1-1
Original file line numberDiff line numberDiff line change
@@ -2202,7 +2202,7 @@ cdef class _Period(PeriodMixin):
22022202
2018
22032203

22042204
If the fiscal year starts in April (`Q-MAR`), the first quarter of
2205-
2018 will start in April 2017. `year` will then be 2018, but `qyear`
2205+
2018 will start in April 2017. `year` will then be 2017, but `qyear`
22062206
will be the fiscal year, 2018.
22072207

22082208
>>> per = pd.Period('2018Q1', freq='Q-MAR')

0 commit comments

Comments
 (0)