Skip to content

Commit

Permalink
bump version to v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
peter-wangxu authored and yuzhi.wx committed Jul 2, 2024
1 parent 51684f2 commit 3359f85
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 86 deletions.
69 changes: 2 additions & 67 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,66 +50,6 @@ jobs:
- store_artifacts:
path: htmlcov

py34:
docker:
# Primary container image where all steps run.
- image: circleci/python:3.4.10
environment:
TOXENV: py34
# MySQL env for mysql queue tests
- image: circleci/mysql:8.0
environment:
MYSQL_ROOT_PASSWORD: 123456
MYSQL_DATABASE: testqueue
MYSQL_USER: user
MYSQL_PASSWORD: passw0rd
steps: *common_steps

py35:
docker:
# Primary container image where all steps run.
- image: circleci/python:3.5.9
environment:
TOXENV: py35
# MySQL env for mysql queue tests
- image: circleci/mysql:8.0
environment:
MYSQL_ROOT_PASSWORD: 123456
MYSQL_DATABASE: testqueue
MYSQL_USER: user
MYSQL_PASSWORD: passw0rd
steps: *common_steps

py36:
docker:
# Primary container image where all steps run.
- image: circleci/python:3.6.10
environment:
TOXENV: py36
# MySQL env for mysql queue tests
- image: circleci/mysql:8.0
environment:
MYSQL_ROOT_PASSWORD: 123456
MYSQL_DATABASE: testqueue
MYSQL_USER: user
MYSQL_PASSWORD: passw0rd
steps: *common_steps

py37:
docker:
# Primary container image where all steps run.
- image: circleci/python:3.7.7
environment:
TOXENV: py37
# MySQL env for mysql queue tests
- image: circleci/mysql:8.0
environment:
MYSQL_ROOT_PASSWORD: 123456
MYSQL_DATABASE: testqueue
MYSQL_USER: user
MYSQL_PASSWORD: passw0rd
steps: *common_steps

py38:
docker:
# Primary container image where all steps run.
Expand Down Expand Up @@ -184,7 +124,7 @@ jobs:
pep8:
docker:
# Primary container image where all steps run.
- image: circleci/python:3.5.9
- image: cimg/python:3.8
environment:
TOXENV: pep8
# MySQL env for mysql queue tests
Expand All @@ -200,7 +140,7 @@ jobs:
cover:
docker:
# Primary container image where all steps run.
- image: circleci/python:3.5.9
- image: cimg/python:3.8
environment:
TOXENV: cover
# MySQL env for mysql queue tests
Expand All @@ -217,11 +157,6 @@ workflows:
build:
jobs:
- pep8
# - py27
# - py34
- py35
- py36
- py37
- py38
- py39
- py310
Expand Down
28 changes: 14 additions & 14 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,26 +25,26 @@ environment:
# The list here is complete (excluding Python 2.6, which
# isn't covered by this document) at the time of writing.
- TOXENV: "pep8"
PYTHON: "C:\\Python35-x64"
PYTHON: "C:\\Python38-x64"
DISTUTILS_USE_SDK: "1"
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017

# - TOXENV: "py27"
# PYTHON: "C:\\Python27-x64"
# DISTUTILS_USE_SDK: "1"
- TOXENV: "py35"
PYTHON: "C:\\Python35-x64"
DISTUTILS_USE_SDK: "1"
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
# - TOXENV: "py35"
# PYTHON: "C:\\Python35-x64"
# DISTUTILS_USE_SDK: "1"
# APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017

- TOXENV: "py36"
PYTHON: "C:\\Python36-x64"
DISTUTILS_USE_SDK: "1"
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
- TOXENV: "py37"
PYTHON: "C:\\Python37-x64"
DISTUTILS_USE_SDK: "1"
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
# - TOXENV: "py36"
# PYTHON: "C:\\Python36-x64"
# DISTUTILS_USE_SDK: "1"
# APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
# - TOXENV: "py37"
# PYTHON: "C:\\Python37-x64"
# DISTUTILS_USE_SDK: "1"
# APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
- TOXENV: "py38"
PYTHON: "C:\\Python38-x64"
DISTUTILS_USE_SDK: "1"
Expand All @@ -66,7 +66,7 @@ environment:
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2022
DISTUTILS_USE_SDK: "1"
- TOXENV: "cover"
PYTHON: "C:\\Python36-x64"
PYTHON: "C:\\Python38-x64"
DISTUTILS_USE_SDK: "1"
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017

Expand Down
2 changes: 1 addition & 1 deletion persistqueue/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
__author__ = 'Peter Wang'
__license__ = 'BSD'
__version__ = '1.0.0-alpha'
__version__ = '1.0.0'

# Relative imports assuming the current package structure
from .exceptions import Empty, Full # noqa: F401
Expand Down
3 changes: 0 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,6 @@ def get_extras():
'Programming Language :: Python',
'Programming Language :: Python :: Implementation',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
minversion = 2.0
skipsdist = True
recreate = false
envlist = py35, py36, py37, py38, py39, py310, py311, py312, pep8, cover
envlist = py38, py39, py310, py311, py312, pep8, cover
deps = -r{toxinidir}/test-requirements.txt
-r{toxinidir}/extra-requirements.txt
-r{toxinidir}/requirements.txt
Expand Down

0 comments on commit 3359f85

Please sign in to comment.