Skip to content

Commit 3359f85

Browse files
peter-wangxuyuzhi.wx
authored and
yuzhi.wx
committed
bump version to v1.0.0
1 parent 51684f2 commit 3359f85

File tree

5 files changed

+18
-86
lines changed

5 files changed

+18
-86
lines changed

.circleci/config.yml

+2-67
Original file line numberDiff line numberDiff line change
@@ -50,66 +50,6 @@ jobs:
5050
- store_artifacts:
5151
path: htmlcov
5252

53-
py34:
54-
docker:
55-
# Primary container image where all steps run.
56-
- image: circleci/python:3.4.10
57-
environment:
58-
TOXENV: py34
59-
# MySQL env for mysql queue tests
60-
- image: circleci/mysql:8.0
61-
environment:
62-
MYSQL_ROOT_PASSWORD: 123456
63-
MYSQL_DATABASE: testqueue
64-
MYSQL_USER: user
65-
MYSQL_PASSWORD: passw0rd
66-
steps: *common_steps
67-
68-
py35:
69-
docker:
70-
# Primary container image where all steps run.
71-
- image: circleci/python:3.5.9
72-
environment:
73-
TOXENV: py35
74-
# MySQL env for mysql queue tests
75-
- image: circleci/mysql:8.0
76-
environment:
77-
MYSQL_ROOT_PASSWORD: 123456
78-
MYSQL_DATABASE: testqueue
79-
MYSQL_USER: user
80-
MYSQL_PASSWORD: passw0rd
81-
steps: *common_steps
82-
83-
py36:
84-
docker:
85-
# Primary container image where all steps run.
86-
- image: circleci/python:3.6.10
87-
environment:
88-
TOXENV: py36
89-
# MySQL env for mysql queue tests
90-
- image: circleci/mysql:8.0
91-
environment:
92-
MYSQL_ROOT_PASSWORD: 123456
93-
MYSQL_DATABASE: testqueue
94-
MYSQL_USER: user
95-
MYSQL_PASSWORD: passw0rd
96-
steps: *common_steps
97-
98-
py37:
99-
docker:
100-
# Primary container image where all steps run.
101-
- image: circleci/python:3.7.7
102-
environment:
103-
TOXENV: py37
104-
# MySQL env for mysql queue tests
105-
- image: circleci/mysql:8.0
106-
environment:
107-
MYSQL_ROOT_PASSWORD: 123456
108-
MYSQL_DATABASE: testqueue
109-
MYSQL_USER: user
110-
MYSQL_PASSWORD: passw0rd
111-
steps: *common_steps
112-
11353
py38:
11454
docker:
11555
# Primary container image where all steps run.
@@ -184,7 +124,7 @@ jobs:
184124
pep8:
185125
docker:
186126
# Primary container image where all steps run.
187-
- image: circleci/python:3.5.9
127+
- image: cimg/python:3.8
188128
environment:
189129
TOXENV: pep8
190130
# MySQL env for mysql queue tests
@@ -200,7 +140,7 @@ jobs:
200140
cover:
201141
docker:
202142
# Primary container image where all steps run.
203-
- image: circleci/python:3.5.9
143+
- image: cimg/python:3.8
204144
environment:
205145
TOXENV: cover
206146
# MySQL env for mysql queue tests
@@ -217,11 +157,6 @@ workflows:
217157
build:
218158
jobs:
219159
- pep8
220-
# - py27
221-
# - py34
222-
- py35
223-
- py36
224-
- py37
225160
- py38
226161
- py39
227162
- py310

appveyor.yml

+14-14
Original file line numberDiff line numberDiff line change
@@ -25,26 +25,26 @@ environment:
2525
# The list here is complete (excluding Python 2.6, which
2626
# isn't covered by this document) at the time of writing.
2727
- TOXENV: "pep8"
28-
PYTHON: "C:\\Python35-x64"
28+
PYTHON: "C:\\Python38-x64"
2929
DISTUTILS_USE_SDK: "1"
3030
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
3131

3232
# - TOXENV: "py27"
3333
# PYTHON: "C:\\Python27-x64"
3434
# DISTUTILS_USE_SDK: "1"
35-
- TOXENV: "py35"
36-
PYTHON: "C:\\Python35-x64"
37-
DISTUTILS_USE_SDK: "1"
38-
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
35+
# - TOXENV: "py35"
36+
# PYTHON: "C:\\Python35-x64"
37+
# DISTUTILS_USE_SDK: "1"
38+
# APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
3939

40-
- TOXENV: "py36"
41-
PYTHON: "C:\\Python36-x64"
42-
DISTUTILS_USE_SDK: "1"
43-
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
44-
- TOXENV: "py37"
45-
PYTHON: "C:\\Python37-x64"
46-
DISTUTILS_USE_SDK: "1"
47-
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
40+
# - TOXENV: "py36"
41+
# PYTHON: "C:\\Python36-x64"
42+
# DISTUTILS_USE_SDK: "1"
43+
# APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
44+
# - TOXENV: "py37"
45+
# PYTHON: "C:\\Python37-x64"
46+
# DISTUTILS_USE_SDK: "1"
47+
# APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
4848
- TOXENV: "py38"
4949
PYTHON: "C:\\Python38-x64"
5050
DISTUTILS_USE_SDK: "1"
@@ -66,7 +66,7 @@ environment:
6666
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2022
6767
DISTUTILS_USE_SDK: "1"
6868
- TOXENV: "cover"
69-
PYTHON: "C:\\Python36-x64"
69+
PYTHON: "C:\\Python38-x64"
7070
DISTUTILS_USE_SDK: "1"
7171
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
7272

persistqueue/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
__author__ = 'Peter Wang'
22
__license__ = 'BSD'
3-
__version__ = '1.0.0-alpha'
3+
__version__ = '1.0.0'
44

55
# Relative imports assuming the current package structure
66
from .exceptions import Empty, Full # noqa: F401

setup.py

-3
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,6 @@ def get_extras():
3535
'Programming Language :: Python',
3636
'Programming Language :: Python :: Implementation',
3737
'Programming Language :: Python :: 3',
38-
'Programming Language :: Python :: 3.5',
39-
'Programming Language :: Python :: 3.6',
40-
'Programming Language :: Python :: 3.7',
4138
'Programming Language :: Python :: 3.8',
4239
'Programming Language :: Python :: 3.9',
4340
'Programming Language :: Python :: 3.10',

tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
minversion = 2.0
44
skipsdist = True
55
recreate = false
6-
envlist = py35, py36, py37, py38, py39, py310, py311, py312, pep8, cover
6+
envlist = py38, py39, py310, py311, py312, pep8, cover
77
deps = -r{toxinidir}/test-requirements.txt
88
-r{toxinidir}/extra-requirements.txt
99
-r{toxinidir}/requirements.txt

0 commit comments

Comments
 (0)